Skip to content

Upgrade to golangci-lint v0.58.2 #1705

Upgrade to golangci-lint v0.58.2

Upgrade to golangci-lint v0.58.2 #1705

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: lint
run: make lint
- name: unit
run: make unit
- name: geos
run: make geos
- name: pgscan
run: make pgscan
- name: cmppg
run: make cmppg
- name: cmpgeos
run: make cmpgeos
- name: Convert coverage to lcov
uses: jandelgado/[email protected]
with:
infile: coverage.out
outfile: coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov