Bump dotnet-sdk from 9.0.203 to 9.0.302 #32
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: Build | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
BuildAsyncAwaitBestPractices: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
# Install .NET SDK | |
- name: Setup .NET 9.0.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.x' # Adjust to your required .NET SDK version | |
- name: Install .NET MAUI | |
run: | | |
dotnet workload install maui | |
dotnet workload update | |
- name: Install Xcode | |
if: runner.os == 'macOS' | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Display .NET Info | |
run: 'dotnet --info' | |
- name: Build "Async Await Best Practices" | |
run: dotnet build -c Release "./5. Async Await Best Practices/src" |