Skip to content

Commit

Permalink
CI: Add Python version to job name (#467)
Browse files Browse the repository at this point in the history
Avoid two same names in the list of jobs in the main build and test workflow.
  • Loading branch information
wenzeslaus committed Mar 4, 2021
1 parent f6c773e commit a9c1c8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:

jobs:
build:
name: ${{ matrix.grass_version }}
name: ${{ matrix.grass-version }} (Python ${{ matrix.python-version }})

runs-on: ubuntu-20.04

strategy:
matrix:
grass_version:
grass-version:
- master
- releasebranch_7_8
python-version:
Expand All @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@v2
with:
repository: OSGeo/grass
ref: ${{ matrix.grass_version }}
ref: ${{ matrix.grass-version }}
path: grass

- name: Checkout core
Expand Down

0 comments on commit a9c1c8e

Please sign in to comment.