mirror of
https://github.com/godotengine/godot-mono-builds.git
synced 2026-01-04 14:10:11 +03: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
|