Skip to content

Commit 39aeb37

Browse files
committed
Monthly builds
1 parent 9df01d1 commit 39aeb37

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@ name: Build
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [ main ]
66
pull_request:
7-
branches: [main, feature/*]
7+
branches: [ main, feature/* ]
8+
schedule: # monthly, first day
9+
- cron: 0 0 1 * *
810

911
jobs:
1012
build:
1113
runs-on: ubuntu-latest
1214
strategy:
1315
fail-fast: false
1416
matrix:
15-
python-version: ["3.9"] #, "3.7", "3.8", "3.9", "3.10"]
17+
python-version: [ "3.9" ] #, "3.7", "3.8", "3.9", "3.10"]
1618

1719
steps:
1820
- uses: actions/checkout@v4
@@ -26,7 +28,10 @@ jobs:
2628
run: pip install -r requirements-dev.txt
2729

2830
- name: Check
29-
run: nox -e check
31+
run: |
32+
nox --version
33+
poetry --version
34+
nox -e check
3035
3136
- name: Install
3237
run: nox -e install

0 commit comments

Comments
 (0)