Skip to content

Read headers with multi-line namelists #44

Read headers with multi-line namelists

Read headers with multi-line namelists #44

Workflow file for this run

name: tests
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
DEFAULT_PYTHON: "3.9"
jobs:
build:
strategy:
max-parallel: 1
fail-fast: true
matrix:
python-version: ["3.8", "3.11"]
os : [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: '**/requirements.txt'
- name: Install dependencies
run: |
python -m pip install pytest
pip install -r requirements.txt
- name: Run pytest
run: |
pytest -rxs