-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from JohnEffo/nethod-parameter-generator
Property Method Attribute Generators
- Loading branch information
Showing
22 changed files
with
1,193 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,18 @@ jobs: | |
uses: actions/setup-dotnet@v3 | ||
- name: Build | ||
run: dotnet build -c Release "src/Hedgehog.Xunit" | ||
- name: Test | ||
run: dotnet test -c Release "tests/Hedgehog.Xunit.Tests" /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov | ||
- 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/TestResults/coverage.info | ||
path-to-lcov: tests/Hedgehog.Xunit.Tests.FSharp/TestResults/coverage.info | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Publish NuGet | ||
uses: alirezanet/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"dotnet.defaultSolution": "Hedgehog.Xunit.sln" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.