Bump Avalonia and 6 others #57
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-and-test: | |
| name: Build and fast tests (windows-latest) | |
| runs-on: windows-latest | |
| env: | |
| AVALONIA_UI_LICENSE_KEY: ${{ secrets.AVALONIA_UI_LICENSE_KEY }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up build | |
| uses: ./.github/actions/setup-build | |
| - name: Build (Release) | |
| shell: pwsh | |
| run: dotnet build Phantom.Workspaces.slnx -c Release --no-restore | |
| - name: Run fast test suite | |
| shell: pwsh | |
| run: .\scripts\run-tests.ps1 -Mode fast | |
| - name: Upload test results log | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-log | |
| path: scripts/test-results.log | |
| if-no-files-found: warn |