Skip to content

fix: move to coveralls gh action #45

fix: move to coveralls gh action

fix: move to coveralls gh action #45

Workflow file for this run

name: Go
on:
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: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
- name: Test
run: make test
- name: Run tests with coverage
run: |
go test -v -race -covermode atomic -coverprofile=covprofile ./...
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
file: covprofile