feat(llamabot/cli/docs)π: Add a new CLI tool for managing Markdown documentation #272
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |