Skip to content

Replace geqdsk reader with FreeQDSK #117

Replace geqdsk reader with FreeQDSK

Replace geqdsk reader with FreeQDSK #117

Workflow file for this run

name: Test and lint
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.11"]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup prerequisites
run:
sudo apt update && sudo apt install -y libhdf5-serial-dev netcdf-bin
libnetcdf-dev libsm6 libxext6 libxrender-dev libxt6 libgl1-mesa-glx
libfontconfig libxkbcommon-x11-0
- name: Install dependencies
run: |
pip install .[tests]
- name: Test local run
run: |
pytest
lint-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1