Skip to content

whiterabbit1983 is linting the code #1221

whiterabbit1983 is linting the code

whiterabbit1983 is linting the code #1221

name: Lint agents-api
run-name: ${{ github.actor }} is linting the code
on:
pull_request:
paths:
- 'agents-api/**'
push:
paths:
- 'agents-api/**'
jobs:
Lint-And-Format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install libboost
run: sudo apt-get install -y libboost-all-dev
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Set up python and install dependencies
run: |
cd agents-api
uv python install
uv sync --all-extras --dev
- name: Lint and format
run: |
cd agents-api
uv run poe format
uv run poe lint
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "refactor: Lint agents-api (CI)"
branch: ${{ github.head_ref }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}