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 61f4858 commit c372ab6Copy full SHA for c372ab6
.github/workflows/tests.yaml
@@ -1,12 +1,16 @@
1
-name: Run Tests
+name: Build & Test
2
3
on:
4
push:
5
branches:
6
- - main
+ - main
7
+ paths-ignore:
8
+ - "**/*.md"
9
pull_request:
10
11
- main
12
13
14
15
jobs:
16
run-tests:
@@ -20,6 +24,7 @@ jobs:
20
24
- name: Install uv
21
25
uses: astral-sh/setup-uv@v4
22
26
with:
27
+ version: "0.5.11" # Pinning to a specific version
23
28
enable-cache: true # Enable caching for faster builds
29
30
- name: Set up Python
@@ -30,4 +35,3 @@ jobs:
35
31
36
- name: Run tests
32
37
run: uvx pytest
33
-
0 commit comments