Remove League of Comic Geeks #9
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
name: Rich Codex | |
on: | |
push: | |
paths: | |
- README.md | |
- perdoo/__main__.py | |
- perdoo/cli/** | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
rich_codex: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v4 | |
- name: Setup Python | |
run: uv python install '3.13' | |
- name: Install project | |
run: uv sync --dev | |
- name: Generate terminal images with rich-codex | |
uses: ewels/rich-codex@v1 | |
with: | |
commit_changes: true | |
clean_img_paths: true |