Skip to content

fortran compilear for CI #1

fortran compilear for CI

fortran compilear for CI #1

Workflow file for this run

name: Builds minimal and runs tests
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:
- uses

Check failure on line 19 in .github/workflows/test_windows.yml

View workflow run for this annotation

GitHub Actions / Builds minimal and runs tests

Invalid workflow file

The workflow is not valid. .github/workflows/test_windows.yml (Line: 19, Col: 7): Unexpected value 'uses'
- name: build splinepy windows
if: matrix.os == 'windows-latest'
uses: msys2/setup-msys2@v2
with:
msystem: minggw64
path-type: inherit
update: true
install: >-
base-devel git
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