Skip to content

Merge branch 'develop' #24

Merge branch 'develop'

Merge branch 'develop' #24

Workflow file for this run

name: Build and Publish
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Nuget publish
uses: alirezanet/publish-nuget@v3.0.0
with:
PROJECT_FILE_PATH: PersistentQueue/PersistentQueue.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
INCLUDE_SYMBOLS: true