Skip to content

Commit dd7f968

Browse files
committed
Add GitHub workflow for running tests
1 parent 16a0523 commit dd7f968

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Tests
2+
3+
on: [push]
4+
5+
jobs:
6+
build-and-test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v3
11+
12+
- name: Set up dependencies
13+
run: sudo apt-get update && sudo apt-get install -y g++
14+
15+
- name: Run tests
16+
run: |
17+
./tester/run_all_tests.sh
18+

0 commit comments

Comments
 (0)