Skip to content

ci(Change-to-check-pipeline): Executing all code checks individually … #2

ci(Change-to-check-pipeline): Executing all code checks individually …

ci(Change-to-check-pipeline): Executing all code checks individually … #2

Workflow file for this run

name: Check
on:
pull_request:
branches:
- main
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: poetry install --with checks
- run: poetry run invoke checks.format
- run: poetry run invoke checks.code
- run: poetry run invoke checks.type
- run: poetry run invoke checks.security
# TODO: Add tests once figuring out how to mock mlflow and qdrant