Skip to content

chore(deps): bump actions/upload-artifact from 4 to 7 #84

chore(deps): bump actions/upload-artifact from 4 to 7

chore(deps): bump actions/upload-artifact from 4 to 7 #84

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v6
with:
go-version: '1.25'
cache: true
- name: Run tests with coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.out
flags: unittests
name: common
fail_ci_if_error: false
# No token needed — Codecov GitHub App is installed on the org.
- name: Coverage summary
run: go tool cover -func=coverage.out | tail -20
- uses: actions/upload-artifact@v7
with:
name: coverage-common
path: coverage.out
retention-days: 30