Skip to content

Renamed banner variable #151

Renamed banner variable

Renamed banner variable #151

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Checkout code
uses: actions/checkout@v4
- name: Calc coverage
run: go test -coverpkg ../pkg/... -coverprofile=c.out
working-directory: go/test
- name: Upload coverage
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: go/test/c.out
format: golang