Skip to content

feat: log agent exit code (#203) #136

feat: log agent exit code (#203)

feat: log agent exit code (#203) #136

Workflow file for this run

name: Lint
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
schedule:
- cron: '30 5 * * *' # every day at 5:30 UTC
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install -e ".[test]"
- name: Install uv
run: |
python -m pip install uv
- uses: pre-commit/action@v3.0.1