Skip to content

Switch from setuptools to meson for building #22

Switch from setuptools to meson for building

Switch from setuptools to meson for building #22

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
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
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install cherab-solps and dependencies
run: python -m pip install .
- name: Run tests
run: dev/test.sh