Upgraded Rebus nuget packages #241
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: .NET | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '9.0.x' # SDK Version to use; x will use the latest version of the 3.1 channel | |
- name: Start containers | |
run: docker compose -f "./Cleipnir.ResilientFunctions/docker-compose.yml" up -d --build | |
- name: Build | |
run: dotnet build | |
- name: Test | |
run: dotnet test --no-build --verbosity normal |