Skip to content

Commit

Permalink
Fix the CI build
Browse files Browse the repository at this point in the history
There is a warning for unavailable Adw.ToolbarView on macOS, which is incorrect (the gir files used by gir.core seem to be outdated on macOS). This does not affect formatting so is okay for now
  • Loading branch information
cameronwhite committed Dec 25, 2023
1 parent a3ab26d commit fee7c29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ jobs:
- name: Test
run: make test
- name: Verify code formatting
run: dotnet format --no-restore --verify-no-changes
# Ignore warning CA1416 for unavailable platform-specific code, since this is unrelated to formatting.
run: dotnet format --no-restore --verify-no-changes --exclude-diagnostics CA1416
- name: Test Install
run: make install
- name: Build Installer
Expand Down

0 comments on commit fee7c29

Please sign in to comment.