Skip to content

New API Endpoints: Basics working. Thoughts & Help needed #727

New API Endpoints: Basics working. Thoughts & Help needed

New API Endpoints: Basics working. Thoughts & Help needed #727

Workflow file for this run

name: "Lint code"
on:
push:
branches: ["master", "main"]
pull_request:
jobs:
pre-commit:
name: "Pre-commit"
runs-on: "ubuntu-latest"
steps:
- name: "⤵️ Check out code from GitHub"
uses: "actions/checkout@v4"
- name: "🐍 Set up Python"
uses: "actions/setup-python@v4"
with:
python-version: 3.8
- name: "⚙️ Install Poetry"
uses: "abatilo/[email protected]"
with:
poetry-version: 1.5.1
- name: "⚙️ Install dependencies"
run: "poetry install"
- name: "🚀 Run pre-commit on all files"
run: |
poetry run pre-commit run --all-files --show-diff-on-failure --color=always