Skip to content

Split linting & formating #1

Split linting & formating

Split linting & formating #1

Workflow file for this run

name: Linting
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: make venv
- name: Run Static Analysis
run: make lint

Check failure on line 26 in .github/workflows/linting.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/linting.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
- name: Run Formatting
run: black --check app tests