Skip to content

Commit a7a3ccd

Browse files
committed
Add build-test job to GH action
1 parent 5901ef1 commit a7a3ccd

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,24 @@ jobs:
2525
tox -e lint
2626
./scripts/copyright.sh
2727
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+
2846
unit-tests:
2947
needs: lint
3048
name: Unit tests

0 commit comments

Comments
 (0)