mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
* Drop Python 3.9 and use Python 3.11 release instead of pre-release * Run poetry lock * Fix need for quoted 3.10 string * Use 3.11.0-rc.2 for Python 3.11 for now * Update minimum Python version in installation docs * Change Python 3.11 RC version to 3.11 * Run docs and release workflows on Python 3.11 * Including Python 3.12 in allowable versions * Restore poetry.lock from develop * Run poetry lock --no-update * Retrieve poetry.lock from develop and lock with --no-update * poetry lock --no-update
28 lines
671 B
YAML
28 lines
671 B
YAML
# Copyright © 2012-2022 jrnl contributors
|
|
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
name: Testing
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * SAT'
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash # needed to prevent Windows from using PowerShell
|
|
|
|
jobs:
|
|
test_all:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [ '3.10', '3.11' ]
|
|
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
|
steps:
|
|
- run: git config --global core.autocrlf false
|
|
- uses: actions/checkout@v3
|
|
- name: Run tests
|
|
uses: ./.github/actions/run_tests
|
|
with:
|
|
cache-string: ${{ secrets.CACHE_STRING }}
|