Skip to content

Adding CellsToMultiPolygon (#70) #85

Adding CellsToMultiPolygon (#70)

Adding CellsToMultiPolygon (#70) #85

Workflow file for this run

name: Build
on: [push, pull_request]
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18"]
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.47.3
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.19"]
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: unit-tests
run: |
go test -count=2 -race -covermode atomic -coverprofile=covprofile ./...
- name: goveralls
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go install github.com/mattn/goveralls@latest
goveralls -coverprofile=covprofile -service=github