From 28aa7bed088c4a01797faba5f152f6a323b2544c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 12 Mar 2023 12:01:49 -0400 Subject: build: make the coverage workflow more similar to the testsuite workflow --- .github/workflows/coverage.yml | 10 +++++----- .github/workflows/python-nightly.yml | 2 +- 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. -- cgit v1.2.1