Skip to content

Commit e1ccaa2

Browse files
committed
add GH workflow for tests
1 parent 7968eb4 commit e1ccaa2

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Run Tests
2+
3+
on:
4+
push:
5+
paths:
6+
- 'code-review/**'
7+
pull_request:
8+
paths:
9+
- 'code-review/**'
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Set up Python
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: '3.11'
23+
24+
- name: Run tests
25+
run: |
26+
cd code-review
27+
make test

0 commit comments

Comments
 (0)