Merge pull request #56 from NeverMorewd/feat-splitunloadviewevent #123
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: | |
| - master | |
| paths-ignore: | |
| - 'README.md' | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - 'README.md' | |
| jobs: | |
| build-avaloniaui: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [windows-2022, ubuntu-22.04, macos-13] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET 8 | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Install dependencies | |
| run: dotnet restore | |
| working-directory: samples/Lemon.ModuleNavigation.Sample.Desktop | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore | |
| working-directory: samples/Lemon.ModuleNavigation.Sample.Desktop | |
| build-wpf: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup .NET 8 | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Install dependencies | |
| run: dotnet restore | |
| working-directory: samples/Lemon.ModuleNavigation.WpfSample | |
| - name: Build WPF Sample | |
| run: dotnet build --configuration Release --no-restore | |
| working-directory: samples/Lemon.ModuleNavigation.WpfSample |