Skip to content

Triage new issues with AutoTriage (#49) #57

Triage new issues with AutoTriage (#49)

Triage new issues with AutoTriage (#49) #57

Workflow file for this run

name: continuous
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
9.0.x
10.0.x
- name: 'Cache: ~/.nuget/packages'
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Restore
run: dotnet restore MudBlazor.ThemeManager.slnx
- name: Verify formatting
run: |
dotnet format whitespace MudBlazor.ThemeManager.slnx --verify-no-changes
dotnet format style MudBlazor.ThemeManager.slnx --verify-no-changes
- name: Build
run: dotnet build MudBlazor.ThemeManager.slnx --configuration Release --no-restore
- name: Pack
run: dotnet pack MudBlazor.ThemeManager.slnx --configuration Release --no-build --output artifacts/packages
- name: 'Publish: packages'
uses: actions/upload-artifact@v4
with:
name: packages
path: artifacts/packages