Skip to content

⬆️ Bump github/codeql-action from 3.29.2 to 3.29.4 #1667

⬆️ Bump github/codeql-action from 3.29.2 to 3.29.4

⬆️ Bump github/codeql-action from 3.29.2 to 3.29.4 #1667

Workflow file for this run

name: Coverage
on:
push:
branches: [ main, dev, feature/* ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: ./go.mod
- name: Run coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)