-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into ruff
- Loading branch information
Showing
2 changed files
with
58 additions
and
58 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
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 poetry | ||
run: pipx install poetry | ||
- name: Set up Python and install dependencies | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
cache: 'poetry' | ||
- name: install poetry | ||
run: poetry install | ||
- name: Test with pytest | ||
run: | | ||
poetry run pytest --cov=src tests/ --doctest-modules --junitxml=cover/xunit-result.xml --cov-report xml:cover/coverage.xml | ||
poetry run coverage json -o cover/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 }} | ||
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 poetry | ||
run: pipx install poetry | ||
- name: Set up Python and install dependencies | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
cache: 'poetry' | ||
- name: install poetry | ||
run: poetry install | ||
- name: Test with pytest | ||
run: | | ||
poetry run pytest --cov=src tests/ --doctest-modules --junitxml=cover/xunit-result.xml --cov-report xml:cover/coverage.xml | ||
poetry run coverage json -o cover/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 }} |
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