Skip to content

Merge pull request #62 from NetherlandsForensicInstitute/61 #49

Merge pull request #62 from NetherlandsForensicInstitute/61

Merge pull request #62 from NetherlandsForensicInstitute/61 #49

Workflow file for this run

name: Run Tests
on:
push:
branches:
- "**"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11" ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python -m unittest discover test