Skip to content

Merge branch 'v0.47_fixes' #1682

Merge branch 'v0.47_fixes'

Merge branch 'v0.47_fixes' #1682

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/gcov2lcov-action@v1.0.9
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