Skip to content

Update Float.TinCan for .NET 6/7 #26

Update Float.TinCan for .NET 6/7

Update Float.TinCan for .NET 6/7 #26

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal --logger:"trx;"
- name: List Results
run: |
pwd
ls /home/runner/work/Float.TinCan/Float.TinCan/Float.TinCan.Tests/TestResults/
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
Float.TinCan.Tests/TestResults/*.trx