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