Skip to content

Commit

Permalink
Tweak job names
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed Aug 16, 2024
1 parent 83944e8 commit 260439e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ permissions:
contents: read
jobs:
lint-protos:
name: Lint protos
runs-on: ubuntu-latest
steps:
- name: Check out repository
Expand All @@ -17,6 +18,7 @@ jobs:
with:
buf_token: ${{ secrets.BUF_TOKEN }}
golangci-lint:
name: Lint code
runs-on: ubuntu-latest
steps:
- name: Check out repository
Expand Down Expand Up @@ -46,11 +48,7 @@ jobs:
GOLANGCI_LINT_CACHE: ${{ runner.temp }}/golangci-lint-cache
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand All @@ -62,7 +60,7 @@ jobs:
- name: Run tests
run: go test -race ./...
mod:
name: Check that `go mod tidy` is clean
name: Check mod tidy
runs-on: ubuntu-latest
steps:
- name: Check out repository
Expand Down

0 comments on commit 260439e

Please sign in to comment.