Skip to content

Improve links in howto docs #214

Improve links in howto docs

Improve links in howto docs #214

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
name: Test
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version}}
- name: Install system dependencies (Ubuntu)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libglu1-mesa
- name: Install dependencies
run: |
python -m pip install "meshio @ git+https://github.com/matnoel/meshio.git@medit_higher_order_elements"
python -m pip install .[dev,io,viz]
- name: Run tests
run: pytest