Skip to content
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu, windows, macos ]
python-version: [3.8, '3.10', 3.11]
python-version: [ 3.9, 3.11, 3.13 ]
include:
- python-version: 3.8
node-version: 16
- python-version: '3.10'
- python-version: 3.9
node-version: 18
- python-version: 3.11
node-version: 20
- python-version: 3.13
node-version: 22
steps:
- uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node-version }}
Expand All @@ -43,8 +43,8 @@ jobs:
restore-keys: |
${{ runner.os }}-node-
- name: Make all (Windows)
if: matrix.os == 'windows'
if: runner.os == 'Windows'
run: make all
- name: Make CI (Non-windows)
if: matrix.os != 'windows'
if: runner.os != 'Windows'
run: make ci
Loading