aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorIan McIntyre <ianpmcintyre@gmail.com>2022-10-29 15:47:16 -0400
committerIan McIntyre <ianpmcintyre@gmail.com>2022-12-01 20:21:05 -0500
commit8ba6242484308959bc24e84a8a77a28101679e1e (patch)
treefdd847ec15b52de2f882a0e60940acc10e2b84b8 /.github
parentc7a9b9f3d4b9e71303c7b988d2bd916c2e4df9bc (diff)
Explicitly match family variants in host impl
Might help the next person who wants to add a new family. There's a way to defeat this lint when the enum is (Partial)Eq: use if / else to emulate a fallthrough. I can't find _another_ lint that would prevent that pattern, so I'll try to be vigilent here.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml
index 2e03ee4..0f3616c 100644
--- a/.github/workflows/rust.yaml
+++ b/.github/workflows/rust.yaml
@@ -33,7 +33,7 @@ jobs:
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- args: --package=imxrt-rt --tests
+ args: --package=imxrt-rt --tests -- -D warnings
tests:
runs-on: ubuntu-latest