Skip to content

chore: remove redundant test job from CD workflow #140

chore: remove redundant test job from CD workflow

chore: remove redundant test job from CD workflow #140

Workflow file for this run

---
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
pull-requests: read
jobs:
quality-assurance:
name: Quality Assurance
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.24.x]
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
go-version: ${{ matrix.go-version }}
- uses: golangci/[email protected]
with:
version: latest
- run: go test -race -v ./...
- run: go vet ./...
- run: golangci-lint run