Skip to content

fix: bump black from 23.9.1 to 23.10.0 #34

fix: bump black from 23.9.1 to 23.10.0

fix: bump black from 23.9.1 to 23.10.0 #34

Workflow file for this run

name: Pull Request CI
on: [ push ]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Black
uses: microsoft/[email protected]
with:
workdir: .
black: true
- name: Flake8
uses: microsoft/[email protected]
with:
workdir: .
flake8: true
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Pytest
uses: microsoft/[email protected]
with:
workdir: .
testing: true
python_version: ${{ matrix.python-version }}