Skip to content

Merge pull request #6 from continental/hz-fix-gha #9

Merge pull request #6 from continental/hz-fix-gha

Merge pull request #6 from continental/hz-fix-gha #9

Workflow file for this run

name: Test with pytest
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .[test]
pip install .
- name: Test with pytest
run: |
python -m pytest