Bump GitHub Actions in dotnet.yml #514
Workflow file for this run
This file contains hidden or 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" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: 'true' | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Start containers | |
| run: docker compose -f "./docker-compose.yml" up -d --build | |
| - name: Build | |
| run: dotnet build | |
| - name: Test | |
| run: dotnet test --no-build --verbosity normal | |
| - name: Run Wolverine.Console | |
| run: dotnet run --project ServiceBuses/Wolverine/Cleipnir.Wolverine.Console/Cleipnir.Wolverine.Console.csproj |