Skip to content

chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#31) #35

chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#31)

chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#31) #35

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: unit test
run: go test -v -coverprofile=coverage.out ./...
- name: codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
fail_ci_if_error: true
files: coverage.out