Skip to content

fortran compiler for CI #6

fortran compiler for CI

fortran compiler for CI #6

Workflow file for this run

name: Test build on windows
on:
push
permissions:
contents: read
jobs:
build_and_tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
os: [windows-latest]
steps:
- name: build splinepy windows
uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: intel
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: pip install numpy
- name: build windows
run: |
pip install ".[test]" -v --config-settings=cmake.args="-DSPLINEPY_MORE=OFF"
- name: test
run: |
pytest tests