Skip to content

Merge pull request #216 from UCL/prep-usage #622

Merge pull request #216 from UCL/prep-usage

Merge pull request #216 from UCL/prep-usage #622

Workflow file for this run

name: Run tests
on:
push:
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
name: Test on Python ${{ matrix.python-version }}
steps:
# Checkout the code we are testing
- uses: actions/checkout@v2
# Setup Python
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
# Install dependencies and package
- run: pip install .[dev]
# Run tests
- run: pytest