Skip to content

Build: Switch from setuptools to scikit-build-core #35

Build: Switch from setuptools to scikit-build-core

Build: Switch from setuptools to scikit-build-core #35

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
tests:
name: Run tests
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install cherab-solps and dependencies
run: python -m pip install .
- name: Run tests
run: dev/test.sh