Skip to content

Improve persistent notification deck UI #3

Improve persistent notification deck UI

Improve persistent notification deck UI #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore ToastDeck.slnx
- name: Build
run: dotnet build ToastDeck.slnx --configuration Release --no-restore
- name: Format check
run: dotnet format ToastDeck.slnx --verify-no-changes --no-restore
- name: Test
run: dotnet test ToastDeck.slnx --configuration Release --no-build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: toastdeck-build
path: artifacts/
if-no-files-found: ignore