Skip to content

Update NuGet Packages - Minor Updates (#120) #353

Update NuGet Packages - Minor Updates (#120)

Update NuGet Packages - Minor Updates (#120) #353

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 🔨 set up .net 7
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: ⚗ restore dependencies
run: dotnet restore src
- name: 🛠 build
run: dotnet build src --configuration Release --no-restore
- name: 🧪 run tests
run: |
cd ./tests/GraphQLToKarate.Tests/
dotnet test --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
cp TestResults/*/coverage.opencover.xml .
- name: 🧪 run command line tests
run: |
cd ./tests/GraphQLToKarate.CommandLine.Tests/
dotnet test --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
cp TestResults/*/coverage.opencover.xml .
- name: 💌 publish code coverage
uses: codecov/codecov-action@v3
with:
files: /home/runner/work/graphql-to-karate/graphql-to-karate/tests/GraphQLToKarate.Tests/coverage.opencover.xml,/home/runner/work/graphql-to-karate/graphql-to-karate/tests/GraphQLToKarate.CommandLine.Tests/coverage.opencover.xml
fail_ci_if_error: true