From 51930a7cbb97e4d426e1bf31117178cf960a5db3 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Wed, 18 Mar 2026 20:01:16 -0400 Subject: [PATCH] style: rename CI jobs to match Makefile targets --- .gitea/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5ea315d..8bcb7c2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,8 +6,8 @@ on: pull_request: jobs: - lint: - name: Golang Lint + lint-go: + name: Go Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -23,7 +23,7 @@ jobs: with: version: latest - unit-test: + test-unit: name: Unit Tests runs-on: ubuntu-latest steps: @@ -36,7 +36,7 @@ jobs: - name: Run unit tests run: make test-unit - fuzz-test: + test-fuzz: name: Fuzz Tests runs-on: ubuntu-latest steps: @@ -49,7 +49,7 @@ jobs: - name: Run fuzz tests run: make test-fuzz - mutation-test: + test-mutation: name: Mutation Tests runs-on: ubuntu-latest steps: