We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd6f47 commit d4869e3Copy full SHA for d4869e3
1 file changed
.github/workflows/main.yml
@@ -17,18 +17,21 @@ jobs:
17
steps:
18
- uses: actions/checkout@v2
19
- name: Set up Python ${{ matrix.python-version }}
20
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v5
21
with:
22
python-version: ${{ matrix.python-version }}
23
+ - name: Install uv
24
+ run: |
25
+ curl -LsSf https://astral.sh/uv/install.sh | sh
26
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
27
- name: Install dependencies
28
run: |
- pip install -r dev-requirements.txt
- pip install -r requirements.txt
29
+ uv sync --extra dev
30
- name: Run Tests
31
env:
32
ENV: DEV
33
- make test
34
+ uv run make test
35
- name: Upload coverage to Codecov
36
if: github.ref == 'refs/heads/master'
37
uses: codecov/codecov-action@v1
0 commit comments