mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-17 19:48:31 +02:00
Add weekly Saturday morning build and prevent Python 3.11 from running on PRs
This commit is contained in:
parent
bb0d96a005
commit
4b53ffbb66
1 changed files with 4 additions and 1 deletions
5
.github/workflows/testing.yaml
vendored
5
.github/workflows/testing.yaml
vendored
|
@ -19,6 +19,8 @@ on:
|
||||||
- 'poetry.lock'
|
- 'poetry.lock'
|
||||||
- 'pyproject.toml'
|
- 'pyproject.toml'
|
||||||
- '.github/workflows/testing.yaml'
|
- '.github/workflows/testing.yaml'
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * SAT'
|
||||||
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
|
@ -27,7 +29,8 @@ defaults:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
if: >
|
if: >
|
||||||
! contains(github.event.head_commit.message, '[ci skip]')
|
! contains(github.event.head_commit.message, '[ci skip]') >
|
||||||
|
&& (matrix.python-version != '3.11-dev' || github.event_name == 'schedule')
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
continue-on-error: ${{ matrix.python-version == '3.11-dev' }}
|
continue-on-error: ${{ matrix.python-version == '3.11-dev' }}
|
||||||
strategy:
|
strategy:
|
||||||
|
|
Loading…
Add table
Reference in a new issue