We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a09c04b commit fc4ff00Copy full SHA for fc4ff00
.github/workflows/type-check.yaml
@@ -10,11 +10,15 @@ jobs:
10
- name: Set up and update uv.
11
run: |
12
curl -LsSf https://astral.sh/uv/install.sh | sh
13
+ export PATH="$HOME/.local/bin:$PATH"
14
uv self update
15
- name: Install Python.
- run: uv python install 3.10
16
+ run: |
17
18
+ uv python install 3.10
19
- name: Create venv and install the package.
20
21
22
uv venv && source .venv/bin/activate
23
uv pip install -e ".[dev]"
24
- name: Run type checking with mypy.
0 commit comments