Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Bump black from 23.9.1 to 23.10.0 #571

Bump black from 23.9.1 to 23.10.0

Bump black from 23.9.1 to 23.10.0 #571

Workflow file for this run

name: Style Checks
on: [push]
jobs:
style_check:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.8]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test flake8 syntax with tox
run: tox -e flake8
- name: Do bandit static check with tox
run: tox -e bandit
- name: Test black formatting
run: tox -e black