Skip to content

Commit 833b938

Browse files
committed
Build changes: temporarily disable black linting requirement, run tests on modern python versions, update nodejs to v20
1 parent 1bf83dd commit 833b938

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/cicd.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,29 @@ jobs:
1111
- uses: psf/black@stable
1212
test:
1313
name: Run unit tests
14-
needs: lint
14+
# needs: lint
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest, macOS-latest]
1919
python-version: ["3.8"]
20-
include:
21-
- os: ubuntu-latest
22-
python-version: "3.6"
23-
- os: ubuntu-latest
24-
python-version: "3.7"
2520
- os: ubuntu-latest
2621
python-version: "3.9"
2722
- os: ubuntu-latest
2823
python-version: "3.10"
24+
- os: ubuntu-latest
25+
python-version: "3.11"
26+
- os: ubuntu-latest
27+
python-version: "3.12"
28+
- os: ubuntu-latest
29+
python-version: "3.13"
2930
steps:
3031
- name: Check out repo
3132
uses: actions/checkout@v3
32-
- name: Set up Node.js 16
33+
- name: Set up Node.js 20
3334
uses: actions/setup-node@v3
3435
with:
35-
node-version: 16
36+
node-version: 20
3637
- name: Set up Python ${{ matrix.python-version }}
3738
uses: actions/setup-python@v4
3839
with:

0 commit comments

Comments
 (0)