From 334e59483432cd51b37518a6b7a6067f2f84e0aa Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Tue, 17 Mar 2026 20:26:48 -0400 Subject: [PATCH] style: add human-readable job names --- .gitea/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f40f322..bc87c0d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -7,6 +7,7 @@ on: jobs: lint: + name: Golang Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -20,6 +21,7 @@ jobs: version: latest unit-test: + name: Unit Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -32,6 +34,7 @@ jobs: run: go test ./... -cover -v fuzz-test: + name: Fuzz Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -47,6 +50,7 @@ jobs: done mutation-test: + name: Mutation Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4