We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d1e9e5 + 58490ad commit f599cbaCopy full SHA for f599cba
.github/workflows/dotnet.yml
@@ -0,0 +1,21 @@
1
+name: .NET Core CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build_and_test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Setup .NET Core 6.0
10
+ uses: actions/setup-dotnet@v1
11
+ with:
12
+ dotnet-version: 6.0.x
13
+ - uses: actions/checkout@v1
14
+ - name: Build
15
+ run: dotnet build ./EnLock.sln --configuration Release
16
+ - name: Test
17
+ run: dotnet test ./EnLock.sln
18
+ - name: Pack
19
+ run: dotnet pack -c Release --no-build -o ./packages
20
+ - name: Push
21
+ run: dotnet nuget push ./packages/EnLock.*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_TOKEN}} --source https://api.nuget.org/v3/index.json
EnLock.Tesr/EnLock.Tesr.csproj
EnLock.Tesr/UnitTest1.cs
0 commit comments