Skip to content

Commit 3b0b39e

Browse files
committed
trying to run the shell tests as part of workflow
1 parent 015e428 commit 3b0b39e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,20 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
17+
1718
- name: Build
1819
run: cargo build --verbose
20+
1921
- name: Test
2022
run: cargo test --verbose
23+
24+
# one of the shell tests below needs jq
25+
- name: Install jq
26+
run: |
27+
sudo apt-get update
28+
sudo apt-get install -y jq
29+
30+
- name: Shell tests
31+
run: |
32+
cd tests
33+
./run_tests.sh

0 commit comments

Comments
 (0)