Files
starter-workflows/ci/blank.yml
T
Chris Patterson b13ec89084 Initial formatting
2019-08-06 16:37:30 -07:00

18 lines
332 B
YAML

name: CI
on: [push]
jobs:
build:
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.