Skip to content

Fix big file reader #154

Fix big file reader

Fix big file reader #154

Workflow file for this run

name: Codecov
on:
pull_request:
branches:
- dev
- dev-rc
- main
push:
branches:
- dev
- dev-rc
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: actions/setup-go@v2
with:
go-version: "1.21"
- name: Run coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true