Skip to content

TAS-10 create endpoints #5

TAS-10 create endpoints

TAS-10 create endpoints #5

Workflow file for this run

name: Linter
on:
pull_request:
branches:
- main
jobs:
run-linters:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: pip
- name: Install Python dependencies
run: pip install black
- name: Run linters
uses: wearerequired/lint-action@v2
with:
auto_fix: true
black: true
black_auto_fix: true