Switch to a timer-based approach for Firefox handling #1997
Workflow file for this run
This file contains 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: commit | |
on: | |
workflow_dispatch: # Allow running on-demand | |
push: | |
branches: [main] | |
paths: | |
- ".github/workflows/commit.yml" | |
- "src/**" | |
- "scripts/**" | |
- "whim-installer.iss" | |
- "Whim.sln" | |
- "Directory.Packages.props" | |
- ".csharpierrc" | |
- ".xamlstylerrc" | |
- ".config/dotnet-tools.json" | |
pull_request: | |
paths: | |
- ".github/workflows/commit.yml" | |
- "src/**" | |
- "scripts/**" | |
- "whim-installer.iss" | |
- "Whim.sln" | |
- "Directory.Packages.props" | |
- ".csharpierrc" | |
- ".xamlstylerrc" | |
- ".config/dotnet-tools.json" | |
env: | |
# We install the packages to the D:\ drive to avoid the slow IO on the C:\ drive. | |
# Based on https://github.com/actions/setup-dotnet/issues/260#issuecomment-1790162905 | |
NUGET_PACKAGES: D:\a\.nuget\packages | |
jobs: | |
commit: | |
strategy: | |
matrix: | |
configuration: [Debug, Release] | |
platform: [x64, arm64] | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache NuGet packages | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.NUGET_PACKAGES }} | |
key: ${{ matrix.platform }}-nuget-${{ hashFiles('Directory.Packages.props') }} | |
restore-keys: | | |
${{ matrix.platform }}-nuget-${{ hashFiles('Directory.Packages.props') }} | |
${{ matrix.platform }}-nuget- | |
- name: Restore dependencies | |
run: | | |
dotnet restore Whim.sln -p:Configuration=$env:Configuration | |
env: | |
Configuration: ${{ matrix.configuration }} | |
- name: Install dotnet tools | |
run: | | |
dotnet tool restore | |
- name: Check C# formatting | |
run: | | |
dotnet tool run dotnet-csharpier . --check | |
- name: Check XAML formatting | |
run: | | |
dotnet tool run xstyler --recursive --d . --passive --config ./.xamlstylerrc | |
# - name: Check analyzers | |
# run: | | |
# dotnet format analyzers Whim.sln --verify-no-changes --no-restore | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2.0.0 | |
- name: Build | |
run: | | |
msbuild Whim.sln ` | |
-p:Configuration=$env:Configuration ` | |
-p:Platform=$env:Platform ` | |
-p:BuildInParallel=true ` | |
-maxCpuCount | |
env: | |
Configuration: ${{ matrix.configuration }} | |
Platform: ${{ matrix.platform }} | |
- name: Test | |
run: | | |
dotnet test Whim.sln --collect:"XPlat Code Coverage;Format=opencover" | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4.5.0 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |