mirror of
https://github.com/Smaug123/WoofWare.PrattParser
synced 2025-10-05 09:28:41 +00:00
Compare commits
2 Commits
2fde797401
...
0c02f81b09
Author | SHA1 | Date | |
---|---|---|---|
|
0c02f81b09 | ||
|
3d76737767 |
7
.github/workflows/dotnet.yaml
vendored
7
.github/workflows/dotnet.yaml
vendored
@@ -242,11 +242,16 @@ jobs:
|
|||||||
- name: Identify .NET
|
- name: Identify .NET
|
||||||
id: identify-dotnet
|
id: identify-dotnet
|
||||||
run: nix develop --command bash -c 'echo dotnet=$(which dotnet) >> $GITHUB_OUTPUT'
|
run: nix develop --command bash -c 'echo dotnet=$(which dotnet) >> $GITHUB_OUTPUT'
|
||||||
|
- name: Obtain NuGet key
|
||||||
|
uses: NuGet/login@d22cc5f58ff5b88bf9bd452535b4335137e24544
|
||||||
|
id: login
|
||||||
|
with:
|
||||||
|
user: ${{ secrets.NUGET_USER }}
|
||||||
- name: Publish NuGet package
|
- name: Publish NuGet package
|
||||||
uses: G-Research/common-actions/publish-nuget@2b7dc49cb14f3344fbe6019c14a31165e258c059
|
uses: G-Research/common-actions/publish-nuget@2b7dc49cb14f3344fbe6019c14a31165e258c059
|
||||||
with:
|
with:
|
||||||
package-name: WoofWare.PrattParser
|
package-name: WoofWare.PrattParser
|
||||||
nuget-key: ${{ secrets.NUGET_API_KEY }}
|
nuget-key: ${{ steps.login.outputs.NUGET_API_KEY }}
|
||||||
nupkg-dir: packed/
|
nupkg-dir: packed/
|
||||||
dotnet: ${{ steps.identify-dotnet.outputs.dotnet }}
|
dotnet: ${{ steps.identify-dotnet.outputs.dotnet }}
|
||||||
|
|
||||||
|
@@ -12,7 +12,6 @@ module TestSurface =
|
|||||||
let ``Ensure API surface has not been modified`` () = ApiSurface.assertIdentical assembly
|
let ``Ensure API surface has not been modified`` () = ApiSurface.assertIdentical assembly
|
||||||
|
|
||||||
[<Test>]
|
[<Test>]
|
||||||
[<Explicit "Not yet published">]
|
|
||||||
// https://github.com/nunit/nunit3-vs-adapter/issues/876
|
// https://github.com/nunit/nunit3-vs-adapter/issues/876
|
||||||
let CheckVersionAgainstRemote () =
|
let CheckVersionAgainstRemote () =
|
||||||
MonotonicVersion.validate assembly "WoofWare.PrattParser"
|
MonotonicVersion.validate assembly "WoofWare.PrattParser"
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
<Authors>Patrick Stevens</Authors>
|
<Authors>PatrickStevens</Authors>
|
||||||
<Copyright>Copyright (c) Patrick Stevens 2024</Copyright>
|
<Copyright>Copyright (c) Patrick Stevens 2024</Copyright>
|
||||||
<Description>For the easy construction of Pratt parsers.</Description>
|
<Description>For the easy construction of Pratt parsers.</Description>
|
||||||
<RepositoryType>git</RepositoryType>
|
<RepositoryType>git</RepositoryType>
|
||||||
|
@@ -53,6 +53,7 @@
|
|||||||
src = ./.;
|
src = ./.;
|
||||||
projectFile = "./PrattParser/PrattParser.fsproj";
|
projectFile = "./PrattParser/PrattParser.fsproj";
|
||||||
testProjectFile = "./PrattParser.Test/PrattParser.Test.fsproj";
|
testProjectFile = "./PrattParser.Test/PrattParser.Test.fsproj";
|
||||||
|
disabledTests = ["WoofWare.PrattParser.Test.TestSurface.CheckVersionAgainstRemote"];
|
||||||
nugetDeps = ./nix/deps.json; # `nix build .#default.fetch-deps && ./result nix/deps.json`
|
nugetDeps = ./nix/deps.json; # `nix build .#default.fetch-deps && ./result nix/deps.json`
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user