File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a .NET project
2+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+ name : Pack
5+
6+ on :
7+ workflow_dispatch :
8+
9+ jobs :
10+ build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v3
16+ - name : Setup .NET
17+ uses : actions/setup-dotnet@v3
18+ with :
19+ dotnet-version : 8.0.x
20+ - name : Restore dependencies
21+ run : dotnet restore ./src
22+ - name : Build
23+ run : dotnet build ./src --configuration Release --no-restore
24+ - name : Test
25+ run : dotnet test ./src --configuration Release --no-build --verbosity normal
26+ - name : Pack
27+ run : dotnet pack ./src/AD.FsCheck.MSTest/AD.FsCheck.MSTest.csproj --configuration Release --no-build --output out
28+ - uses : actions/upload-artifact@v3
29+ with :
30+ name : FsChek_MsTest
31+ path : out/*
You can’t perform that action at this time.
0 commit comments