ci: pre-commit autoupdate #898
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: Python package | |
on: | |
push: | |
# paths: | |
# - 'src/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create application default credentials | |
run: | | |
mkdir -p $HOME/.config/gcloud/ | |
echo "$APP_CRED" >> $HOME/.config/gcloud/application_default_credentials.json | |
chmod 600 $HOME/.config/gcloud/application_default_credentials.json | |
shell: bash | |
env: | |
APP_CRED: ${{secrets.APPLICATION_DEFAULT_CREDENTIALS}} | |
- name: Set up wandb api key | |
run: | | |
echo "$WANDB_API_KEY" >> $HOME/.netrc | |
chmod 600 $HOME/.netrc | |
shell: bash | |
env: | |
WANDB_API_KEY: ${{secrets.WANDB_API_KEY}} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
enable-cache: true | |
- name: Set up Python | |
run: uv python install 3.11 | |
- name: Install the project | |
run: uv sync --all-extras --dev | |
- name: Test with pytest | |
run: | | |
uv run pytest --cov=src tests/ --junitxml=cover/xunit-result.xml --cov-report xml:cover/coverage.xml | |
uv run coverage json cover/xunit-result.xml coverage.json | |
- name: "Extract numbers from cov report" | |
run: | | |
export TOTAL=$(python -c "import json;print(json.load(open('cover/coverage.json'))['totals']['percent_covered_display'])") | |
echo "total=$TOTAL" >> $GITHUB_ENV | |
echo "### Total coverage: ${TOTAL}%" >> $GITHUB_STEP_SUMMARY | |
- name: "Make badge" | |
uses: schneegans/[email protected] | |
with: | |
auth: ${{ secrets.GIST_TOKEN }} | |
gistID: e2578f2f3e6322d299f1cb2e294d6b0b | |
filename: covbadge.json | |
label: Coverage | |
message: ${{ env.total }}% | |
minColorRange: 50 | |
maxColorRange: 90 | |
valColorRange: ${{ env.total }} |