Skip to content

Merge branch 'main' of github.com:ukaea/Multiparser #271

Merge branch 'main' of github.com:ukaea/Multiparser

Merge branch 'main' of github.com:ukaea/Multiparser #271

name: multiparser
on: [push]
jobs:
unit_tests:
name: Unit Tests (${{ matrix.os }} Python${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [ '3.11', '3.12', '3.13' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
- name: Run Unit Tests
run: |
poetry install --all-extras
poetry run pytest