Skip to content

Commit

Permalink
update github actions to ignore md
Browse files Browse the repository at this point in the history
  • Loading branch information
tensorturtle committed Dec 20, 2024
1 parent 61f4858 commit c372ab6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
name: Run Tests
name: Build & Test

on:
push:
branches:
- main
- main
paths-ignore:
- "**/*.md"
pull_request:
branches:
- main
paths-ignore:
- "**/*.md"

jobs:
run-tests:
Expand All @@ -20,6 +24,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.5.11" # Pinning to a specific version
enable-cache: true # Enable caching for faster builds

- name: Set up Python
Expand All @@ -30,4 +35,3 @@ jobs:

- name: Run tests
run: uvx pytest

0 comments on commit c372ab6

Please sign in to comment.