We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7968eb4 commit e1ccaa2Copy full SHA for e1ccaa2
.github/workflows/test.yml
@@ -0,0 +1,27 @@
1
+name: Run Tests
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'code-review/**'
7
+ pull_request:
8
9
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