Skip to content

fortran compiler for CI #4

fortran compiler for CI

fortran compiler for CI #4

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: msys2/setup-msys2@v2
with:
msystem: mingw64
path-type: inherit
update: true
install: >-
base-devel git mingw-w64-x86_64-gcc-fortran
pacboy: >-
python:p python-pip:p gcc:p cmake:p
- 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