Skip to content

chore(build): add golangci-lint to the pipeline as a non-blocking step #426

chore(build): add golangci-lint to the pipeline as a non-blocking step

chore(build): add golangci-lint to the pipeline as a non-blocking step #426

Workflow file for this run

name: Unit Testing
permissions:
contents: read
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# milestoned is added here as a workaround for release-please not triggering PR workflows (PRs should be added to a milestone to trigger the workflow).
types: [milestoned, opened, reopened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Setup golang
uses: ./.github/actions/golang
- name: Display Go version
run: go version
- name: Unit Tests
run: |
make test-unit