Skip to content

⬆️ Bump actions/setup-go from 6.4.0 to 6.5.0 #1786

⬆️ Bump actions/setup-go from 6.4.0 to 6.5.0

⬆️ Bump actions/setup-go from 6.4.0 to 6.5.0 #1786

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # 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)