Skip to content

Commit 62b1248

Browse files
committed
use anki's python version in ci
1 parent 3c96e3f commit 62b1248

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)