Create main.yml
authorAlessandro Pio Ardizio <alessandroardizio94@gmail.com>
Sun, 19 Jan 2020 16:16:56 +0000 (17:16 +0100)
committerGitHub <noreply@github.com>
Sun, 19 Jan 2020 16:16:56 +0000 (17:16 +0100)
.github/workflows/main.yml [new file with mode: 0644]

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644 (file)
index 0000000..b2340b2
--- /dev/null
@@ -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.