Improve rule matching to support query strings #16
This file contains 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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: dotnet build -c Release | |
- name: Test | |
run: dotnet test -c Release --no-build --collect:"XPlat Code Coverage;Format=lcov" | |
- name: Get path to lcov file | |
id: get_lcov_path | |
shell: bash | |
run: echo "LCOVPATH=$(find ~+ -iname 'coverage.info')" >> $GITHUB_OUTPUT | |
- name: Coveralls GitHub Action | |
uses: coverallsapp/github-action@v2 | |
with: | |
file: ${{ steps.get_lcov_path.outputs.LCOVPATH }} | |
format: lcov | |