Skip to content

feat: split output file into multiple smaller ones based on flag #63

feat: split output file into multiple smaller ones based on flag

feat: split output file into multiple smaller ones based on flag #63

Workflow file for this run

name: Run tests and upload coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test ./... -coverprofile=coverage.txt -covermode=atomic
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.txt
fail_ci_if_error: true