Files
starter-workflows/ci/blank.yml
T
2019-07-29 09:38:23 -07:00

19 lines
333 B
YAML

on: [push]
jobs:
run:
name: Run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- 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.