Skip to content

feat: add league and track api group #12

feat: add league and track api group

feat: add league and track api group #12

Workflow file for this run

name: Lint Check
on:
pull_request:
types: [synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: black Lint
uses: psf/black@stable
with:
src: "./src/iracing_garage"
- name: flake8 Lint
uses: py-actions/flake8@v2