Skip to content

build(deps): bump codecov/codecov-action from 4 to 5 #67

build(deps): bump codecov/codecov-action from 4 to 5

build(deps): bump codecov/codecov-action from 4 to 5 #67

Workflow file for this run

name: Test & Test Coverage
on:
push:
pull_request:
branches:
- "*"
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: actions/setup-go@v5
with:
go-version: ">=1.22"
- name: Tests
run: go test --race --shuffle=on ./...
coverage:
runs-on: ubuntu-latest
name: Test Coverage
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup
uses: actions/setup-go@v5
with:
go-version: ">=1.22"
- run: go test -coverprofile=coverage.txt -covermode=atomic
- uses: codecov/codecov-action@v5