File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI and Build Package
2+
3+ on :
4+ push :
5+ branches : [ "main" ]
6+
7+ jobs :
8+ windows64 :
9+ runs-on : windows-latest
10+
11+ steps :
12+ - name : Checkout
13+ uses : actions/checkout@v4
14+ - name : Install .NET Core
15+ uses : actions/setup-dotnet@v4
16+ with :
17+ dotnet-version : 9.0.x
18+
19+ - name : Restore dependencies
20+ run : dotnet restore src/FlowCommandLine/FlowCommandLine.csproj
21+ - name : Build
22+ run : dotnet build --configuration Release src/FlowCommandLine/FlowCommandLine.csproj
23+ - name : Tests
24+ run : dotnet test --configuration Release --no-build src/FlowCommandLine/FlowCommandLine.csproj
25+ - name : Pack package
26+ run : dotnet pack --configuration Release --no-build --output . src/FlowCommandLine/FlowCommandLine.csproj
You can’t perform that action at this time.
0 commit comments