Skip to content

Commit

Permalink
ci: give a name to a step
Browse files Browse the repository at this point in the history
Otherwise it's displayed using the first line of the run: argument, i.e.
like this:

> Run # This corresponds with the list in Makefile:1, but omits the "userns"

which is a bit confusing.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin committed Sep 21, 2024
1 parent c8dc7fa commit 93d7712
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
cache-dependency-path: ${{ steps.gosum.outputs.stdout }}
- name: Checkout code
uses: actions/checkout@v4
- if: ${{ matrix.go-version == '1.18.x' }}
- name: Set PACKAGES env
if: ${{ matrix.go-version == '1.18.x' }}
run: |
# This corresponds with the list in Makefile:1, but omits the "userns"
# and "capability" modules, which require go1.21 as minimum.
Expand Down

0 comments on commit 93d7712

Please sign in to comment.