ci: fix literal ${matrix.task} in step names (Gitea does not resolve them)
CI / Go vulnerabilities (push) Successful in 1m34s
CI / Build & Vet (push) Successful in 2m10s
CI / Frontend build (gate) (push) Successful in 1m59s
CI / Frontend QC (audit) (push) Successful in 55s
CI / Tests (prod) (push) Successful in 1m53s
CI / Frontend QC (typecheck) (push) Successful in 1m51s
CI / Tests (dev) (push) Successful in 2m19s
CI / Frontend QC (lint) (push) Successful in 2m43s
CI / Race (prod) (push) Successful in 3m51s
CI / Race (dev) (push) Failing after 6m44s

Replace with static names. Job names still use matrix templates (those work).

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-07-09 17:29:39 +01:00
co-authored by Sisyphus
parent 510828c924
commit 29958620b6
+3 -3
View File
@@ -119,7 +119,7 @@ jobs:
- name: Create test database - name: Create test database
run: PGPASSWORD=mypassword psql -h postgres -U myuser -d mydb -c "CREATE DATABASE crussell_test_db;" 2>/dev/null || true run: PGPASSWORD=mypassword psql -h postgres -U myuser -d mydb -c "CREATE DATABASE crussell_test_db;" 2>/dev/null || true
- name: Test (${{ matrix.label }} tags) - name: Run tests
working-directory: backend working-directory: backend
run: go test -tags "${{ matrix.gotags }}" -count=1 ${{ matrix.verbose }} -timeout 180s ./... run: go test -tags "${{ matrix.gotags }}" -count=1 ${{ matrix.verbose }} -timeout 180s ./...
env: env:
@@ -189,7 +189,7 @@ jobs:
- name: Create test database - name: Create test database
run: PGPASSWORD=mypassword psql -h postgres -U myuser -d mydb -c "CREATE DATABASE crussell_test_db;" 2>/dev/null || true run: PGPASSWORD=mypassword psql -h postgres -U myuser -d mydb -c "CREATE DATABASE crussell_test_db;" 2>/dev/null || true
- name: Race (${{ matrix.label }} tags) - name: Run race detector
working-directory: backend working-directory: backend
run: go test -tags "${{ matrix.gotags }}" -race -count=1 -timeout 240s ./... run: go test -tags "${{ matrix.gotags }}" -race -count=1 -timeout 240s ./...
env: env:
@@ -299,5 +299,5 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: cd frontend && npm ci run: cd frontend && npm ci
- name: ${{ matrix.task }} - name: Run QC task
run: cd frontend && ${{ matrix.cmd }} run: cd frontend && ${{ matrix.cmd }}