Skip to content

added code coverage for f# #31

added code coverage for f#

added code coverage for f# #31

Workflow file for this run

name: Build F# Nerddeck
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Build F#
run: dotnet build
working-directory: ${{ github.workspace }}/fsharp/NerdDeckFSharp
test:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Test F#
run: dotnet test
working-directory: ${{ github.workspace }}/fsharp/NerdDeckFSharp
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-quality: 'ga'
- name: ReportGenerator
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.0
with:
reports: cobertura.xml
targetdir: coveragereport