Skip to content

Property Method Attribute Generators #29

Property Method Attribute Generators

Property Method Attribute Generators #29

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
- name: Build
run: dotnet build -c Release "src/Hedgehog.Xunit"
- name: Test F#
run: dotnet test -c Release "tests/Hedgehog.Xunit.Tests.FSharp" /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov
- name: Test C#
run: dotnet test -c Release "tests/Hedgehog.Xunit.Tests.CSharp"
- name: Run F# Examples
run: dotnet test -c Release "examples/Hedgehog.Xunit.Examples.FSharp"
- name: Run C# Examples
run: dotnet test -c Release "examples/Hedgehog.Xunit.Examples.CSharp"
- name: Coveralls
uses: coverallsapp/github-action@master
with:
path-to-lcov: tests/Hedgehog.Xunit.Tests.FSharp/TestResults/coverage.info
github-token: ${{ secrets.GITHUB_TOKEN }}