Bump the nservicebuscore group with 3 updates (#1315) #1508
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- release-* | |
pull_request: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
jobs: | |
build: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: windows-2022 | |
name: Windows | |
- os: ubuntu-22.04 | |
name: Linux | |
fail-fast: false | |
steps: | |
- name: Check for secrets | |
env: | |
SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }} | |
shell: pwsh | |
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: 8.0.x | |
dotnet-quality: 'preview' | |
- name: Build | |
run: dotnet build src --configuration Release | |
- name: Upload packages | |
if: matrix.name == 'Windows' | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: NuGet packages | |
path: nugets/ | |
retention-days: 7 | |
- name: Azure login | |
uses: azure/login@v1.4.7 | |
with: | |
creds: ${{ secrets.AZURE_ACI_CREDENTIALS }} | |
enable-AzPSSession: true | |
- name: Setup RabbitMQ | |
uses: Particular/setup-rabbitmq-action@v1.4.0 | |
with: | |
connection-string-name: RabbitMQTransport_ConnectionString | |
tag: RabbitMQTransport | |
- name: Run tests | |
uses: Particular/run-tests-action@v1.6.0 | |
with: | |
reset-script: dotnet run --project src/targets |