Skip to content

Update CHANGELOG for v0.45.0 #1474

Update CHANGELOG for v0.45.0

Update CHANGELOG for v0.45.0 #1474

Workflow file for this run

name: build
on:
push:
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.2
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