Skip to content

feat(llamabot/cli/docs)πŸ“: Add a new CLI tool for managing Markdown documentation #273

feat(llamabot/cli/docs)πŸ“: Add a new CLI tool for managing Markdown documentation

feat(llamabot/cli/docs)πŸ“: Add a new CLI tool for managing Markdown documentation #273

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: Set up Python
run: uv python install
- uses: pre-commit/action@v2.0.0