We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5901ef1 commit a7a3ccdCopy full SHA for a7a3ccd
1 file changed
.github/workflows/test.yaml
@@ -25,6 +25,24 @@ jobs:
25
tox -e lint
26
./scripts/copyright.sh
27
28
+ build-test:
29
+ name: Build test
30
+ runs-on: ubuntu-latest
31
+ strategy:
32
+ matrix:
33
+ python:
34
+ - "3.10"
35
+ steps:
36
+ - name: Check out code
37
+ uses: actions/checkout@v3
38
+ - name: Setup Python
39
+ uses: actions/setup-python@v4
40
+ with:
41
+ python-version: ${{ matrix.python }}
42
+ - name: Run build test target
43
+ run: |
44
+ make build-test
45
+
46
unit-tests:
47
needs: lint
48
name: Unit tests
0 commit comments