-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (38 loc) · 895 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
bats-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install bats
run: |
git submodule init
git submodule update
- name: Run Bats Test
shell: 'script -q -e -c "bash {0}"' # work around tty issues
env:
TERM: linux # fix tput for tty issue work around
run: |
$PWD/test/bats/bin/bats --tap test
bats-test-macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install bats
run: |
git submodule init
git submodule update
- name: Run Bats Test
run: |
$PWD/test/bats/bin/bats --tap test