Skip to content

Log the file taxonomy is loaded from (#386) #523

Log the file taxonomy is loaded from (#386)

Log the file taxonomy is loaded from (#386) #523

Workflow file for this run

name: Unittest
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# There is a bug in Python 3.13.0 which breaks Vamb's tests, fixed in 3.13.1
python-version: ["3.10", "3.11", "3.12", "3.13.1"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
cache-dependency-path: '**/pyproject.toml'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
- name: Run tests
run: python -m pytest test