Skip to content

⬆️ Bump actions/checkout from 5.0.1 to 6.0.0 #1730

⬆️ Bump actions/checkout from 5.0.1 to 6.0.0

⬆️ Bump actions/checkout from 5.0.1 to 6.0.0 #1730

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@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # 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)