Use square brackets for documentation links #93
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |