Skip to content

Commit ac40ff3

Browse files
committed
update github actions
1 parent f6868a2 commit ac40ff3

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,18 @@ jobs:
1313
if: "!contains(github.event.pull_request.labels.*.name, 'docs-only')"
1414
runs-on: ${{ matrix.os }}
1515
strategy:
16+
fail-fast: false
1617
matrix:
17-
os: [ubuntu-latest, macos-latest, windows-latest]
18-
python: ['3.9', '3.10', '3.11']
18+
os: [ubuntu-latest]
19+
python: ["3.9", "3.12"]
20+
include:
21+
- os: macos-latest
22+
python: "3.12"
23+
- os: windows-latest
24+
python: "3.12"
1925

2026
steps:
27+
- uses: actions/checkout@v4
2128
- uses: compas-dev/compas-actions.build@v4
2229
with:
2330
python: ${{ matrix.python }}

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Check Actions
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v4
1515
- name: Changelog check
1616
uses: Zomzog/changelog-checker@v1.2.0
1717
with:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.9",
2727
"Programming Language :: Python :: 3.10",
2828
"Programming Language :: Python :: 3.11",
29+
"Programming Language :: Python :: 3.12",
2930
]
3031

3132
[project.urls]

0 commit comments

Comments
 (0)