Skip to content

Style test by janiceblue #25

Style test by janiceblue

Style test by janiceblue #25

Workflow file for this run

name: style
run-name: Style test by ${{ github.actor }}
on: [push, pull_request]
jobs:
style-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Black check
run: |
pip install black==24.8.0
black --diff --check projects
- name: isort check
run: |
pip install isort==5.13.2
isort --profile black --check projects