Bump actions/checkout from 1 to 4 (#74) #134
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 MAUI | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - "*" | |
| jobs: | |
| Build_Android: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET v9.0 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "9.0.x" | |
| - name: Install .NET MAUI Workload | |
| run: | | |
| dotnet workload install maui | |
| - name: Restore NuGet | |
| run: | | |
| dotnet restore ./src | |
| - name: Build Android App | |
| run: | | |
| dotnet build ./src -f net9.0-android | |
| Build_iOS: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET v9.0 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "9.0.x" | |
| - name: Install .NET MAUI Workload | |
| run: | | |
| dotnet workload install maui | |
| - name: Restore NuGet | |
| run: | | |
| dotnet restore ./src | |
| - name: Install Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Build iOS App | |
| run: | | |
| dotnet build ./src -f net9.0-ios | |
| Build_MacCatalyst: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET v9.0 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "9.0.x" | |
| - name: Install .NET MAUI Workload | |
| run: | | |
| dotnet workload install maui | |
| - name: Restore NuGet | |
| run: | | |
| dotnet restore ./src | |
| - name: Install Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Build macOS App | |
| run: | | |
| dotnet build ./src -f net9.0-maccatalyst | |
| Build_Windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'microsoft' | |
| java-version: '17' | |
| - name: Setup .NET v9.0 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "9.0.x" | |
| - name: Install .NET MAUI Workload | |
| run: | | |
| dotnet workload install maui | |
| - name: Restore NuGet | |
| run: | | |
| dotnet restore ./src | |
| - name: Build Windows App | |
| run: | | |
| dotnet build ./src |