We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 527ff14 commit f48c505Copy full SHA for f48c505
.github/workflows/ci.yml
@@ -9,13 +9,16 @@ jobs:
9
steps:
10
- name: checkout repo
11
uses: actions/checkout@v4
12
- - name: Setup PDM
13
- uses: pdm-project/setup-pdm@v4
+ - name: Install uv
+ uses: astral-sh/setup-uv@v4
14
+ with:
15
+ enable-cache: true # Enable caching for faster builds
16
+ version: "latest" # Specify the version of uv to install
17
# You are now able to use PDM in your workflow
18
- name: Install dependencies
- run: pdm install
19
+ run: uv sync
20
- name: run tests and coverage report
21
run: |
- pdm run test
- pdm run cov_report
-
22
+ uv run cov
23
+ uv run check_format
24
+ uv run badge
0 commit comments