Skip to content

Commit 67f2fb9

Browse files
authored
Merge pull request #54 from open205/fix-actions
Fix GitHub Actions
2 parents 1172cc0 + e3144cc commit 67f2fb9

File tree

2 files changed

+479
-309
lines changed

2 files changed

+479
-309
lines changed
+8-7
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
11
name: Validate and Build
22

3-
on: push
3+
on:
4+
push:
5+
schedule:
6+
- cron: "0 9 * * SUN"
47

58
jobs:
69
build:
710
strategy:
811
fail-fast: false
912
matrix:
1013
os: [ubuntu-latest, macos-latest, windows-latest]
11-
python-version: ["3.7", "3.8", "3.9", "3.10"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1215
defaults:
1316
run:
1417
shell: bash
1518
name: ${{ matrix.os }} with py${{ matrix.python-version }}
1619
runs-on: ${{ matrix.os }}
1720
steps:
1821
- name: Checkout
19-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2023
- name: Setup Python ${{ matrix.python-version }}
2124
uses: bigladder/github-actions/setup-python-poetry@main
2225
with:
2326
python-version: ${{ matrix.python-version }}
2427
- name: Validate, build, and test
25-
run: |
26-
source $VENV
27-
poetry run doit
28+
run: poetry run doit
2829
- name: Upload Build Content
29-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3031
with:
3132
name: build-content-${{ matrix.os }}-py${{ matrix.python-version }}
3233
path: build

0 commit comments

Comments
 (0)