Skip to content

v1.4.3

v1.4.3 #29

Workflow file for this run

name: Test release
on:
release:
types: [published]
workflow_dispatch:
env:
BUILTIN_PYTHON_VERSION: 3.10.13
jobs:
test_published:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform:
- ubuntu-20.04
- ubuntu-22.04
- windows-2019
- windows-2022
- macos-11
- macos-12
node-version: [14.x, 16.x, 18.x, 20.x]
python-version: ["3.8", "3.9", "3.10", "3.11"]
exclude:
- node-version: 14.x
python-version: "3.11"
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/setup-python@v4
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