Skip to content

Commit c372ab6

Browse files
committed
update github actions to ignore md
1 parent 61f4858 commit c372ab6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/tests.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
name: Run Tests
1+
name: Build & Test
22

33
on:
44
push:
55
branches:
6-
- main
6+
- main
7+
paths-ignore:
8+
- "**/*.md"
79
pull_request:
810
branches:
911
- main
12+
paths-ignore:
13+
- "**/*.md"
1014

1115
jobs:
1216
run-tests:
@@ -20,6 +24,7 @@ jobs:
2024
- name: Install uv
2125
uses: astral-sh/setup-uv@v4
2226
with:
27+
version: "0.5.11" # Pinning to a specific version
2328
enable-cache: true # Enable caching for faster builds
2429

2530
- name: Set up Python
@@ -30,4 +35,3 @@ jobs:
3035

3136
- name: Run tests
3237
run: uvx pytest
33-

0 commit comments

Comments
 (0)