Skip to content

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.0 #1720

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.0

Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.0 #1720

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- "docs/**"
- "*.md"
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
jobs:
test:
env:
DisableGitVersionTask: true
strategy:
matrix:
include:
- os: windows-latest
build_config: Debug
- os: ubuntu-latest
build_config: Linux-Debug
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Test
run: dotnet run --project build/Build.csproj -- --target Test --configuration ${{ matrix.build_config }} --clean
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-on-${{ matrix.os }}
path-to-lcov: TestResults/lcov.info
parallel: true
coveralls-finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true