Skip to content

Commit f599cba

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 7d1e9e5 + 58490ad commit f599cba

File tree

3 files changed

+21
-34
lines changed

3 files changed

+21
-34
lines changed

.github/workflows/dotnet.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 23 deletions
This file was deleted.

EnLock.Tesr/UnitTest1.cs

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)