Eric Froemling 9e7c71675b testing CI
2019-10-06 04:51:53 -07:00

19 lines
325 B
YAML

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,
false
echo test, and deploy your project.