Skip to content

v1.6.0-rc.0

v1.6.0-rc.0 #33

Workflow file for this run

name: Test release
on:
release:
types: [published]
workflow_dispatch:
env:
BUILTIN_PYTHON_VERSION: 3.12.8
jobs:
test_published:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform:
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
- windows-2019
- windows-2022
- macos-13
- macos-13
- macos-14
node-version: [16.x, 18.x, 20.x, 22.x, 23.x]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- platform: ubuntu-24.04
python-version: 8
- platform: ubuntu-20.04
node-version: 23.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: npm install --ignore-scripts
- run: npx @mapbox/node-pre-gyp install
- run: node ./scripts/pympip install --upgrade pip
- run: node ./scripts/pympip install -r test/requirements.txt
- name: Run unit tests
run: npm test