Update tests to not run all the time (#2311)
This commit is contained in:
parent
65e28b8c22
commit
2c03eee329
1
.github/workflows/codeql-analysis.yml
vendored
1
.github/workflows/codeql-analysis.yml
vendored
|
@ -5,6 +5,7 @@ on:
|
|||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
types: [review_requested, ready_for_review]
|
||||
schedule:
|
||||
- cron: '25 16 * * 0'
|
||||
|
||||
|
|
26
.github/workflows/coverage.yml
vendored
26
.github/workflows/coverage.yml
vendored
|
@ -1,17 +1,17 @@
|
|||
name: Coverage check
|
||||
# on:
|
||||
# push:
|
||||
# branches:
|
||||
# - main
|
||||
# tags:
|
||||
# - "!*" # Do not execute on tags
|
||||
# paths:
|
||||
# - sanic/*
|
||||
# - tests/*
|
||||
# pull_request:
|
||||
# paths:
|
||||
# - "!*.MD"
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- "!*" # Do not execute on tags
|
||||
paths:
|
||||
- sanic/*
|
||||
- tests/*
|
||||
pull_request:
|
||||
paths:
|
||||
- "!*.MD"
|
||||
types: [review_requested, ready_for_review]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
|
1
.github/workflows/pr-bandit.yml
vendored
1
.github/workflows/pr-bandit.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
bandit:
|
||||
|
|
1
.github/workflows/pr-docs.yml
vendored
1
.github/workflows/pr-docs.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
docsLinter:
|
||||
|
|
1
.github/workflows/pr-linter.yml
vendored
1
.github/workflows/pr-linter.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
linter:
|
||||
|
|
7
.github/workflows/pr-python310.yml
vendored
7
.github/workflows/pr-python310.yml
vendored
|
@ -3,12 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sanic/*
|
||||
- tests/*
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
testPy39:
|
||||
|
|
7
.github/workflows/pr-python37.yml
vendored
7
.github/workflows/pr-python37.yml
vendored
|
@ -3,12 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sanic/*
|
||||
- tests/*
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
testPy37:
|
||||
|
|
7
.github/workflows/pr-python38.yml
vendored
7
.github/workflows/pr-python38.yml
vendored
|
@ -3,12 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sanic/*
|
||||
- tests/*
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
testPy38:
|
||||
|
|
7
.github/workflows/pr-python39.yml
vendored
7
.github/workflows/pr-python39.yml
vendored
|
@ -3,12 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- sanic/*
|
||||
- tests/*
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
testPy39:
|
||||
|
|
1
.github/workflows/pr-type-check.yml
vendored
1
.github/workflows/pr-type-check.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
typeChecking:
|
||||
|
|
1
.github/workflows/pr-windows.yml
vendored
1
.github/workflows/pr-windows.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
|||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
testsOnWindows:
|
||||
|
|
Loading…
Reference in New Issue
Block a user