Skip to content

ci: add python 3.12 to test matrix #200

ci: add python 3.12 to test matrix

ci: add python 3.12 to test matrix #200

Workflow file for this run

on:
workflow_dispatch:
push:
branches: [main]
name: Tests
jobs:
Python-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out pyobsplot repository
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
cache: "npm"
- name: Install node dependencies
run: |
npm ci
npm ci --workspaces
- name: Install hatch
run: pipx install hatch
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Run pytest
run: hatch run test
JS-tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
cache: "npm"
- name: Install node dependencies
run: npm ci --workspaces
- name: Run tests
run: npm run test --workspaces