diff options
| author | Jonathan Vanasco <jonathan@2xlp.com> | 2022-12-05 17:08:10 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-05 23:08:10 +0100 |
| commit | 018c72d45e8296c5ee9cb1f45e868dabf07e6f3d (patch) | |
| tree | 449e1ed43f14bd5e33eab34abaf51b733ee9a53e /.github | |
| parent | 71fea64c6ff935d5777225fa716cd29cc1466c31 (diff) | |
| download | sqlalchemy-018c72d45e8296c5ee9cb1f45e868dabf07e6f3d.tar.gz | |
rename some GitHub actions to use test names as prefix, as introduced in rel_1_4 (#8933)
Change-Id: I7f3aa96447ade605becbdef01bc19f3b78dbd6d1
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/run-on-pr.yaml | 2 | ||||
| -rw-r--r-- | .github/workflows/run-test.yaml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/run-on-pr.yaml b/.github/workflows/run-on-pr.yaml index 1a622bfd1..8c7f2715f 100644 --- a/.github/workflows/run-on-pr.yaml +++ b/.github/workflows/run-on-pr.yaml @@ -17,7 +17,7 @@ permissions: jobs: run-test-amd64: - name: ${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} + name: test-amd64-${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: # run this job using this matrix, excluding some combinations below. diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index e05d71bf0..a8141c854 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -20,7 +20,7 @@ permissions: jobs: run-test: - name: ${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} + name: test-${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: # run this job using this matrix, excluding some combinations below. @@ -95,7 +95,7 @@ jobs: continue-on-error: ${{ matrix.python-version == 'pypy-3.9' }} run-test-arm64: - name: ${{ matrix.python-version }}-${{ matrix.build-type }}-arm64-ubuntu-latest + name: test-arm64-${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.os }} runs-on: ubuntu-latest strategy: matrix: |
