blob: 47384aa536ccc5e6de5c049506eae1529602fc8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
name: main
on: [push, pull_request]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Install shellspec
run: curl -fsSL https://git.io/shellspec | sh -s -- -p /usr/local -y
build:
runs-on: ubuntu-latest
needs: setup
steps:
- uses: actions/checkout@v1
- name: Run do
run: ./tools/do
test:
runs-on: ubuntu-latest
needs: build
steps:
- run: ./tools/do test
- run: shellspec
|