Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
dharmaturtle committed Jun 30, 2023
1 parent c10a87f commit 28b83d2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
- name: Test C#
run: dotnet test -c Release "tests/Hedgehog.Xunit.Tests.CSharp"
- name: Run F# Examples
run: dotnet test -c Release "tests/Hedgehog.Xunit.Examples.FSharp"
run: dotnet test -c Release "examples/Hedgehog.Xunit.Examples.FSharp"
- name: Run C# Examples
run: dotnet test -c Release "tests/Hedgehog.Xunit.Examples.CSharp"
run: dotnet test -c Release "examples/Hedgehog.Xunit.Examples.CSharp"
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,14 @@ jobs:
uses: actions/setup-dotnet@v3
- name: Build
run: dotnet build -c Release "src/Hedgehog.Xunit"
- name: Test
- 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:
Expand Down

0 comments on commit 28b83d2

Please sign in to comment.