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 3c96e3f commit 62b1248Copy full SHA for 62b1248
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
6
+jobs:
7
+ test:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v6
11
+ with:
12
+ submodules: true
13
14
+ - uses: actions/setup-python@v6
15
16
+ python-version: "3.9"
17
+ cache: pip
18
19
+ - name: Install Hatch
20
+ run: pip install hatch "virtualenv<20.30"
21
22
+ - name: Run tests
23
+ run: hatch run dev:test
0 commit comments