Skip to content

Bump black from 23.12.0 to 23.12.1 #15

Bump black from 23.12.0 to 23.12.1

Bump black from 23.12.0 to 23.12.1 #15

Workflow file for this run

name: ToxTest
on:
pull_request:
workflow_dispatch:
jobs:
run_tox:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python_version: [3.8,3.9,3.10.x,3.11.x,3.12.x]
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python_version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python_version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions poetry
- name: test with tox
run: tox