Skip to content

onclosed file on test #16

onclosed file on test

onclosed file on test #16

Workflow file for this run

name: test
on:
push:
branches:
- 'master'
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Test
run: |
make test
- name: Upload coverage report
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.out
flags: unittests
name: codecov-umbrella