Skip to content

Update Github actions and pre-commit hooks #133

Update Github actions and pre-commit hooks

Update Github actions and pre-commit hooks #133

Workflow file for this run

---
name: Unit tests
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Run tests
run: tox