Skip to content

Bump Azure.Messaging.ServiceBus and 2 others #34

Bump Azure.Messaging.ServiceBus and 2 others

Bump Azure.Messaging.ServiceBus and 2 others #34

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
# Run unit tests (skip integration tests that require external services/native libs)
- name: Test
run: |
dotnet test Services/Iris.Brokers.Test/Iris.Brokers.Test.csproj --no-build --configuration Release --verbosity normal
dotnet test Services/Assemblies/Iris.Assemblies.Test/Iris.Assemblies.Test.csproj --no-build --configuration Release --verbosity normal
dotnet test Iris.Components.Test/Iris.Components.Test.csproj --no-build --configuration Release --verbosity normal