aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAlee <alee14498@protonmail.com>2020-01-19 19:05:09 -0500
committerGitHub <noreply@github.com>2020-01-19 19:05:09 -0500
commitb596c68834cf04347024c05c3feba5baeeb9a4b4 (patch)
tree1c37e88d2c1699067491d29134be4478c782c94c /.github/workflows
parent38d2fa17d115cb05dbf59475f87a6d30508891f6 (diff)
downloaderable-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.yml17
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.