Skip to content

Ambare specific projection #38

Ambare specific projection

Ambare specific projection #38

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.23
- name: Test
run: |
go mod tidy
go test -race -withpg -v .
go test -race -covermode=atomic -coverprofile=coverage.out -v `go list ./... | grep -v ./example`
- name: Install goveralls
run: go install github.com/mattn/goveralls@latest
- name: Goveralls
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=coverage.out -service=github