Bump xunit from 2.5.0 to 2.6.1 #405
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: Run code tests | |
on: | |
pull_request: | |
branches: | |
- master | |
- develop | |
paths: | |
- src/** | |
- .github/workflows/** | |
# Upload code coverage results when PRs are merged | |
push: | |
branches: | |
- master | |
- develop | |
paths: | |
- src/** | |
- .github/workflows/** | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
graphqlversion: | |
- 7.0.0 | |
- 7.1.1 | |
- 7.2.2 | |
name: ${{ matrix.os }}/${{ matrix.graphqlversion }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Setup .NET SDKs | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
3.1.x | |
5.0.x | |
6.0.x | |
7.0.x | |
source-url: https://nuget.pkg.github.com/graphql-dotnet/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Install dependencies with GraphQL version ${{ matrix.graphqlversion }} | |
working-directory: src | |
run: dotnet restore -p:GraphQLTestVersion=${{ matrix.graphqlversion }} | |
- name: Build solution [Release] | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
working-directory: src | |
run: dotnet build --no-restore -c Release -p:GraphQLTestVersion=${{ matrix.graphqlversion }} | |
- name: Build solution [Debug] | |
working-directory: src | |
run: dotnet build --no-restore -c Debug -p:GraphQLTestVersion=${{ matrix.graphqlversion }} | |
- name: Test solution [Debug] with code coverage | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
working-directory: src | |
run: > | |
dotnet test | |
--no-restore | |
--no-build | |
--collect "XPlat Code Coverage" | |
--results-directory .coverage | |
-- | |
DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover | |
DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Exclude=[BasicSample]*,[Harness]* | |
- name: Test solution [Debug] without code coverage | |
if: ${{ startsWith(matrix.os, 'windows') }} | |
working-directory: src | |
run: dotnet test --no-restore --no-build | |
- name: Upload coverage to codecov | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
uses: codecov/codecov-action@v3 | |
with: | |
files: 'src/.coverage/**/coverage.opencover.xml' | |
buildcheck: | |
needs: | |
- test | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- name: Pass build check | |
if: ${{ needs.test.result == 'success' }} | |
run: exit 0 | |
- name: Fail build check | |
if: ${{ needs.test.result != 'success' }} | |
run: exit 1 |