Skip to content

feat: Log resource when exception occurs to aid debugging #511

feat: Log resource when exception occurs to aid debugging

feat: Log resource when exception occurs to aid debugging #511

Workflow file for this run

name: Lint with Black
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Check formatting
run: make fmt-check