Skip to content

Commit b215395

Browse files
committed
set up github actions test
1 parent a24c758 commit b215395

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Run tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
11+
- name: Install Valgrind
12+
run: |
13+
sudo apt-get update
14+
sudo apt-get install -y valgrind
15+
16+
- name: Run tests
17+
run: |
18+
cd test/
19+
./zhash_test.sh

0 commit comments

Comments
 (0)