summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-03-12 12:01:49 -0400
committerNed Batchelder <ned@nedbatchelder.com>2023-03-12 12:11:29 -0400
commit28aa7bed088c4a01797faba5f152f6a323b2544c (patch)
tree56af6242fc512fe6524a94993ed0819c0d2cf8e1
parent8eb95b5ad2ed1cee1204b1ce95bad9118063d178 (diff)
downloadpython-coveragepy-git-28aa7bed088c4a01797faba5f152f6a323b2544c.tar.gz
build: make the coverage workflow more similar to the testsuite workflow
-rw-r--r--.github/workflows/coverage.yml10
-rw-r--r--.github/workflows/python-nightly.yml2
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 6af6aded..6404a7c2 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -29,15 +29,15 @@ concurrency:
jobs:
coverage:
- name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
- runs-on: "${{ matrix.os }}"
+ name: "${{ matrix.python-version }} on ${{ matrix.os }}"
+ runs-on: "${{ matrix.os }}-latest"
strategy:
matrix:
os:
- - ubuntu-latest
- - macos-latest
- - windows-latest
+ - ubuntu
+ - macos
+ - windows
python-version:
# When changing this list, be sure to check the [gh] list in
# tox.ini so that tox will run properly. PYVERSIONS
diff --git a/.github/workflows/python-nightly.yml b/.github/workflows/python-nightly.yml
index 967fd0c8..c2ba98e6 100644
--- a/.github/workflows/python-nightly.yml
+++ b/.github/workflows/python-nightly.yml
@@ -31,7 +31,7 @@ concurrency:
jobs:
tests:
- name: "Python ${{ matrix.python-version }}"
+ name: "${{ matrix.python-version }}"
# Choose a recent Ubuntu that deadsnakes still builds all the versions for.
# For example, deadsnakes doesn't provide 3.10 nightly for 22.04 (jammy)
# because jammy ships 3.10, and deadsnakes doesn't want to clobber it.