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 8dbc2f6 commit d530220Copy full SHA for d530220
.github/workflows/test.yml
@@ -0,0 +1,32 @@
1
+name: Python CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-24.04
8
+ strategy:
9
+ matrix:
10
+ python-version: ["3.12"]
11
12
+ steps:
13
+ - name: Set up Python ${{ matrix.python-version }}
14
+ uses: actions/setup-python@v2
15
+ with:
16
+ python-version: ${{ matrix.python-version }}
17
+ architecture: x64
18
19
+ - name: Check out repository
20
+ uses: actions/checkout@v2
21
22
+ - name: Upgrade pip and setuptools
23
+ run: |
24
+ python -m pip install --upgrade pip setuptools
25
26
+ - name: Install dependencies
27
28
+ pip install .
29
30
+ - name: Run tests
31
32
+ python test/test.py
.travis.yml
0 commit comments