Skip to content

Prepare for 0.4.0

Prepare for 0.4.0 #82

Workflow file for this run

name: Python package and lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python packages
run: pip install -e . -r ./requirements_tests.txt
- name: Black Code Formatter
run: black --check .
- name: Run tests
run: pytest --vcr-record=none