Skip to content

remove black, fix things with pre-commit #1

remove black, fix things with pre-commit

remove black, fix things with pre-commit #1

Workflow file for this run

# This workflow runs tests using pytest.
name: Run tox
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install enzax
run: pip install -e .[test]
- name: Run pytest
run: python -m pytest --cov=src/enzax
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3