Skip to content

feat(llamabot)πŸš€: Enhance llamabot with new git reporting features #301

feat(llamabot)πŸš€: Enhance llamabot with new git reporting features

feat(llamabot)πŸš€: Enhance llamabot with new git reporting features #301

Workflow file for this run

# Run code style checks on each pull request.
name: Code style checks
on: [pull_request]
jobs:
linting:
env:
# Configure a constant location for the uv cache
UV_CACHE_DIR: /tmp/.uv-cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# - uses: actions/setup-python@v2
# with:
# python-version: 3.11
- name: Setup uv
# Install latest uv version using the installer
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Setup Pixi Environment
uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.25.0
cache: true
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
- name: Set up Python
run: uv python install
- uses: pre-commit/action@v2.0.0