Skip to content

Commit 1ce2c21

Browse files
Prevent running test suite on commits to /docs (go-chi#648)
1 parent 9d73c84 commit 1ce2c21

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
on: [push, pull_request]
1+
on:
2+
push:
3+
branches: '**'
4+
paths-ignore:
5+
- 'docs/**'
6+
pull_request:
7+
branches: '**'
8+
paths-ignore:
9+
- 'docs/**'
10+
211
name: Test
312
jobs:
413
test:

0 commit comments

Comments
 (0)