ci: don't run tests on docs only change
This commit is contained in:
parent
a9cfdc843e
commit
09d30cf1a6
1 changed files with 12 additions and 4 deletions
14
.github/workflows/test.yml
vendored
14
.github/workflows/test.yml
vendored
|
@ -1,10 +1,18 @@
|
|||
name: Test
|
||||
name: Tests
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- 'LICENSE'
|
||||
- '**.md'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'LICENSE'
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
unit:
|
||||
name: Unit Test
|
||||
name: Unit Tests
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
|
|
Loading…
Reference in a new issue