Skip to content

update rigidfoils

update rigidfoils #160

Workflow file for this run

name: run all tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: run tests
steps:
- uses: actions/checkout@v2
- name: python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: install requirements
run: |
pip install wheel
pip install mypy
pip install .
- name: mypy
run: |
mypy --config-file mypy.ini openglider
- name: test
run: |
python testall.py