Skip to content

Commit 581b6a8

Browse files
committed
Refine
1 parent fc39614 commit 581b6a8

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/verify.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,13 @@ jobs:
139139
steps:
140140
- name: Check out committed code
141141
uses: actions/checkout@v4
142-
- name: Restore cached environment
143-
id: cache-reuse
144-
uses: airos/gh-actions/restore-venv@v1
145-
with:
146-
cache-key: ${{ needs.cache.outputs.cache-key }}
147-
python-version: ${{ env.DEFAULT_PYTHON }}
148-
venv-dir: ${{ env.VENV }}
149-
precommit-home: ${{ env.PRE_COMMIT_HOME }}
142+
- name: Prepare python
143+
run: |
144+
pip install uv
145+
uv venv --seed venv
146+
. venv/bin/activate
147+
uv pip install -r requirements.txt -r requirements-test.txt
148+
- name: Run mypy
150149
- name: Download all coverage artifacts
151150
uses: actions/download-artifact@v4
152151
- name: Combine coverage results

0 commit comments

Comments
 (0)