Skip to content

changed job for github - done #22

changed job for github - done

changed job for github - done #22

Workflow file for this run

name: coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Run tests
run: make test
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: goveralls -coverprofile=.temp/coverage-report.out -service=github