Skip to content

Merge pull request #2 from janbrasna/add/ci-matrix #46

Merge pull request #2 from janbrasna/add/ci-matrix

Merge pull request #2 from janbrasna/add/ci-matrix #46

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
node: [16, 18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: make install
- run: make test