We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df968f6 commit 61a933cCopy full SHA for 61a933c
.github/workflows/test-package.yml
@@ -0,0 +1,31 @@
1
+name: Test package
2
+
3
+on:
4
+ workflow_call:
5
+ workflow_dispatch:
6
+ push:
7
+ branches: [ "main", "tester/*" ]
8
+ pull_request:
9
+ branches: [ "main" ]
10
11
+jobs:
12
+ test-package:
13
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
19
20
+ steps:
21
+ - uses: actions/checkout@v3
22
+ - name: Set up Python ${{ matrix.python-version }}
23
+ uses: actions/setup-python@v3
24
+ with:
25
+ python-version: ${{ matrix.python-version }}
26
+ - name: Install unittest extensions
27
+ run: pip install unittest-extensions
28
+ - name: Install local package
29
+ run: make install-local-package
30
+ - name: Test package
31
+ run: make test
0 commit comments