Skip to content

⬆️ Bump actions/checkout from 6.0.2 to 6.0.3 #1783

⬆️ Bump actions/checkout from 6.0.2 to 6.0.3

⬆️ Bump actions/checkout from 6.0.2 to 6.0.3 #1783

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