New list converter and array based converter #739
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: dotnet-tests | |
"on": push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
dotnet-quality: "preview" | |
- name: Test | |
run: | | |
cd code | |
dotnet restore | |
dotnet build | |
dotnet test -f net8.0 --collect:"XPlat Code Coverage;Format=lcov" | |
- name: Coverage | |
run: | | |
sudo apt-get install -y lcov | |
mkdir -p coverage | |
find . -name coverage.info -exec echo -a {} \; | xargs lcov -o coverage/lcov.info | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2 |