Skip to content

Commit

Permalink
make workflow names more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
bjia56 committed Jan 27, 2024
1 parent 17e709c commit dbc0fa5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
build_linux_zig:
if: ${{ !startsWith(inputs.python_version, '3.8') }}
name: Linux ${{ inputs.python_version }} ${{ matrix.arch }}
name: Linux (Zig) ${{ inputs.python_version }} ${{ matrix.arch }}
strategy:
fail-fast: false
matrix:
Expand All @@ -27,15 +27,15 @@ jobs:

build_linux_armv7l:
if: ${{ !startsWith(inputs.python_version, '3.8') }}
name: Linux ${{ inputs.python_version }} armv7l
name: Linux (Docker) ${{ inputs.python_version }} armv7l
uses: ./.github/workflows/build_python_linux.yml
with:
python_version: ${{ inputs.python_version }}
arch: armv7l

build_linux_3_8:
if: ${{ startsWith(inputs.python_version, '3.8') }}
name: Linux ${{ inputs.python_version }} ${{ matrix.arch }}
name: Linux (Docker) ${{ inputs.python_version }} ${{ matrix.arch }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit dbc0fa5

Please sign in to comment.