Skip to content

Commit

Permalink
ci(test): don't run when docs or markdown files are updated
Browse files Browse the repository at this point in the history
  • Loading branch information
vedantmgoyal9 authored Feb 14, 2025
1 parent 8457d16 commit 7fe69e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Test

on: [push, pull_request]
on:
push:
paths-ignore: [docs/**, "*.md"]
pull_request:
paths-ignore: [docs/**, "*.md"]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down

0 comments on commit 7fe69e5

Please sign in to comment.