Skip to content

Commit

Permalink
fixup! flail: attempt testing EOL pythons in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dairiki committed Sep 4, 2024
1 parent 2290d92 commit d0bb074
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: Compute tox env name
run: |
toxenv=$(python -c '
ver=r"${{ matrix.python }}".replace(".", "")
print(f"py{ver} if ver[0].isdigit() else ver")
')
echo toxenv is "$toxenv"
ver=r"${{ matrix.python }}".replace(".", "")
print(f"py{ver}" if ver[0].isdigit() else ver)
')
echo toxenv is "$toxenv";
echo "TOXENV=$toxenv" >> "$GITHUB_ENV"
- name: Test with tox
Expand Down

0 comments on commit d0bb074

Please sign in to comment.