Skip to content

⬆️ Bump black from 23.9.1 to 24.3.0 #48

⬆️ Bump black from 23.9.1 to 24.3.0

⬆️ Bump black from 23.9.1 to 24.3.0 #48

Workflow file for this run

name: Static Code Analysis
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.11.x
uses: actions/setup-python@v4
with:
python-version: 3.11.x
- uses: snok/install-poetry@v1
with:
virtualenvs-create: true
- name: Install Dependencies
run: poetry install
- name: Run Static Analysis
run: |
poetry run ruff asbestos tests
poetry run black --check .