Polishing #399
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: Continuous Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
env: | |
PYTEST_ADDOPTS: "--color=yes" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install a specific version of uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
version: "0.6.3" | |
enable-cache: true | |
- run: uv python install # Will read from .python-version | |
- name: Install Dependencies | |
run: uv sync --all-extras --dev | |
- name: Run Tests | |
run: | | |
uv run make test-ci | |
- name: Attach Code Coverage | |
uses: py-cov-action/python-coverage-comment-action@v3.25 | |
with: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Save Snapshot Report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: snapshot-report-posting | |
path: snapshot_report.html | |
- name: Store Pull Request Comment | |
uses: actions/upload-artifact@v4 | |
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true' | |
with: | |
# If you use a different name, update COMMENT_ARTIFACT_NAME accordingly | |
name: python-coverage-comment-action | |
# If you use a different name, update COMMENT_FILENAME accordingly | |
path: python-coverage-comment-action.txt |