diff options
| author | Alee <alee14498@protonmail.com> | 2020-01-19 19:05:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-19 19:05:09 -0500 |
| commit | b596c68834cf04347024c05c3feba5baeeb9a4b4 (patch) | |
| tree | 1c37e88d2c1699067491d29134be4478c782c94c /.github/workflows | |
| parent | 38d2fa17d115cb05dbf59475f87a6d30508891f6 (diff) | |
| download | erable-godot-b596c68834cf04347024c05c3feba5baeeb9a4b4.tar.gz erable-godot-b596c68834cf04347024c05c3feba5baeeb9a4b4.tar.bz2 erable-godot-b596c68834cf04347024c05c3feba5baeeb9a4b4.zip | |
Create main.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/main.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..b2340b2 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Run a one-line script + run: echo Hello, world! + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. |
