Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz committed Mar 14, 2024
1 parent c150532 commit 2f9d220
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,15 @@ jobs:
- name: Run tox targets for ${{ matrix.python-version }}
run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)

- name: Format database identifier
run: |
echo "db_id=${REPO//-/_}" >> "$GITHUB_OUTPUT"
id: format_db_id

- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data-${{ matrix.python-version }}-${{ matrix.database }}
name: coverage-data-${{ matrix.python-version }}-${{ steps.format_db_id.db_id }}
path: '${{ github.workspace }}/.coverage.*'

coverage:
Expand Down

0 comments on commit 2f9d220

Please sign in to comment.