mirror of
https://github.com/Relintai/godot-mono-builds.git
synced 2024-11-12 10:25:10 +01:00
16 lines
316 B
YAML
16 lines
316 B
YAML
name: Continuous integration
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Lint repo
|
|
run: |
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -qq dos2unix recode
|
|
bash ./format.sh
|