Skip to content

Merge pull request #36 from HS-Kempten/33-implement-mini-map-in-visua… #199

Merge pull request #36 from HS-Kempten/33-implement-mini-map-in-visua…

Merge pull request #36 from HS-Kempten/33-implement-mini-map-in-visua… #199

Workflow file for this run

name: Run tests of python package
on:
push:
branches:
- '**'
pull_request:
branches: [ 'main' ]
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Test with pytest
run: |
python -m pytest