Merge pull request #43 from artpods56/chore/update-openapi-spec #102
Workflow file for this run
This file contains hidden or 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: Update coverage badge | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v4 | |
| - uses: extractions/setup-just@v2 | |
| - name: Install Python | |
| run: uv python install 3.13 | |
| - name: Install dependencies | |
| run: just sync | |
| - name: Generate coverage report | |
| run: just coverage || true | |
| - name: Commit coverage.json if changed | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: "chore: update coverage.json" | |
| file_pattern: coverage.json |