We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b261158 commit 190037cCopy full SHA for 190037c
.github/workflows/main.yml
@@ -5,6 +5,9 @@ on:
5
pull_request:
6
push:
7
branches: [ staging, master ]
8
+ schedule:
9
+ # Weekly on Sunday
10
+ - cron: '0 0 * * 0'
11
12
jobs:
13
pre-commit:
@@ -18,16 +21,14 @@ jobs:
18
21
extra_args: --hook-stage manual --all-files
19
22
20
23
checks:
- name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
24
+ name: Check Python ${{ matrix.python-version }} on ${{ matrix.os }}
25
runs-on: ${{ matrix.os }}
26
strategy:
27
fail-fast: false
28
matrix:
29
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
30
python-version: ["3.10", "3.11", "3.12"]
31
include:
- - os: ubuntu-24.04
- python-version: 3.7
32
- os: ubuntu-24.04
33
python-version: 3.8
34
.github/workflows/test-latest.yml
0 commit comments