Skip to content

Bump Microsoft.Build.Utilities.Core from 17.10.4 to 17.11.4 #1426

Bump Microsoft.Build.Utilities.Core from 17.10.4 to 17.11.4

Bump Microsoft.Build.Utilities.Core from 17.10.4 to 17.11.4 #1426

name: Run Build and Unit tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
schedule:
- cron: '0 0 * * 0'
jobs:
main:
runs-on: ${{ matrix.environment }}
strategy:
matrix:
environment:
- macos-latest
- ubuntu-latest
- windows-latest
fail-fast: false
env:
DOTNET_NOLOGO: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
NUGET_PACKAGES: ${{ github.workspace }}/.github/nuget-packages
steps:
- name: πŸ“ Fetch Sources πŸ“
uses: actions/checkout@v4
- name: πŸ’‘ Perform Common Steps πŸ’‘
uses: ./.github/workflows/perform-common-steps
- name: πŸ›  Build Solution πŸ› 
shell: bash
run: dotnet nuke CompileAll
- name: 🚚 Publish Compiler Bundle 🚚
shell: bash
run: dotnet nuke PublishCompilerBundle
- name: πŸ“¦ Pack Compiler Bundle πŸ“¦
shell: bash
run: dotnet nuke PackCompilerBundle
- name: βœ… Run Unit Tests βœ…
shell: bash
run: dotnet nuke TestAll