Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions .github/workflows/windows-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ jobs:
timeout-minutes: 30
defaults:
run:
shell: bash
# bash on this self-hosted runner mangles the auto-generated temp
# script's Windows-style path (backslashes stripped -- "No such file
# or directory" on a path that plainly exists), the way
# windows-release.yml's own steps already discovered. powershell is
# the proven shell for this runner.
shell: powershell
working-directory: desktop/src-tauri
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand All @@ -44,13 +49,13 @@ jobs:
# findings from this workflow's first-ever run -- nothing has
# type-checked this target before, so they predate this workflow
# rather than being caused by it.
run: |
cargo clippy --tests -- -D warnings \
-A clippy::derivable_impls \
-A clippy::single_match \
-A clippy::trim_split_whitespace \
-A unused_variables \
-A clippy::needless_return
run: >
cargo clippy --tests -- -D warnings
-A clippy::derivable_impls
-A clippy::single_match
-A clippy::trim_split_whitespace
-A unused_variables
-A clippy::needless_return

- name: cargo test
run: cargo test
Loading