We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6392906 commit c284ce3Copy full SHA for c284ce3
.github/workflows/python.yml
@@ -22,10 +22,13 @@ name: Python CI
22
on:
23
workflow_dispatch:
24
pull_request:
25
- branches-ignore: ['dependabot/**']
26
push:
27
- tags: [ 'v*.*.*' ] # run again on release tags to have tools mark them
28
- branches: [ 'main' ]
+ tags: [ 'v*' ] # run again on release tags to have tools mark them
+ branches: [ 'main', 'next' ]
+ schedule:
29
+ # schedule daily tests, since some dependencies are not intended to be pinned
30
+ # this means: at 23:42 every day
31
+ - cron: '42 23 * * *'
32
33
concurrency:
34
group: '${{ github.workflow }}-${{ github.ref }}'
0 commit comments