Skip to content

nuget: bump the bench group in /benchmarks/GPUHeatTransfer with 1 update #193

nuget: bump the bench group in /benchmarks/GPUHeatTransfer with 1 update

nuget: bump the bench group in /benchmarks/GPUHeatTransfer with 1 update #193

Workflow file for this run

name: Integration Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
integration-tests:
name: Test Project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install Mono
run: sudo apt-get install mono-complete -y
shell: bash
- name: Run integration tests
run: dotnet test --verbosity normal -p:CollectCoverage=true -p:CoverletOutputFormat=opencover DotMP-Tests
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
files: coverage.net8.0.opencover.xml
directory: DotMP-Tests
token: ${{ secrets.CODECOV_TOKEN }}