Files
starter-workflows/ci/blank.yml
T

22 lines
395 B
YAML
Raw Normal View History

2019-08-06 16:37:30 -07:00
name: CI
2020-02-12 13:26:01 -05:00
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
2019-07-29 09:38:23 -07:00
jobs:
2019-08-06 16:37:30 -07:00
build:
2019-07-29 09:38:23 -07:00
runs-on: ubuntu-latest
2019-10-16 12:40:14 -07:00
2019-07-29 09:38:23 -07:00
steps:
2019-12-24 14:22:22 -08:00
- uses: actions/checkout@v2
2019-07-29 09:38:23 -07:00
- 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.