1 parent 8ef5bbc commit b006ea1Copy full SHA for b006ea1
2 files changed
.github/workflows/test.yml
@@ -32,6 +32,8 @@ jobs:
32
- name: Install dependencies
33
run: |
34
make .venv
35
+ env:
36
+ PYTHON_VERSION: ${{ matrix.python-version }}
37
38
- name: Run checks
39
Makefile
@@ -3,9 +3,11 @@
3
check: test lint mypy audit deadcode
4
fix: format fixlint
5
6
+PYTHON_VERSION ?= 3.10
7
+
8
.venv:
9
pip install uv
- uv venv -p 3.10 .venv
10
+ uv venv -p $(PYTHON_VERSION) .venv
11
uv pip sync requirements-dev.txt
12
uv pip install -e .[test]
13
0 commit comments