Skip to content

Bump black from 22.6.0 to 24.3.0 #20

Bump black from 22.6.0 to 24.3.0

Bump black from 22.6.0 to 24.3.0 #20

Workflow file for this run

name: Run the test suite
on:
push:
branches:
- master
- test-workflow
pull_request:
workflow_dispatch:
jobs:
test-for-python3:
strategy:
fail-fast: true
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: pip install -r requirements-dev.txt
- name: Run unit tests
run: python setup.py test