Create main.yml

This commit is contained in:
2020-03-01 18:15:18 +11:00
committed by GitHub
parent 1ecf0096a0
commit 7cd6dc6d9f
+17
View File
@@ -0,0 +1,17 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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.