exclude docs from checks (#163)

specify path as src in github actions workflows
This commit is contained in:
Logan McDonald 2022-10-13 12:53:00 -04:00 committed by GitHub
parent 8d493d2e44
commit af0525f8a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View file

@ -7,6 +7,9 @@ name: Build and deploy
on:
push:
paths-ignore:
- 'docs/**'
branches:
- main

View file

@ -2,6 +2,8 @@ name: Security Checks
on:
push:
paths-ignore:
- 'docs/**'
branches:
- main
pull_request:

View file

@ -3,11 +3,13 @@ name: Testing
on:
push:
paths-ignore:
- 'docs/**'
branches:
- main
- main
pull_request:
branches:
- main
- main
jobs:
python-linting: