disable clippy --all on windows for now (due to frida issues)

This commit is contained in:
Dominik Maier 2021-04-30 16:03:04 +02:00
parent 9ee427a1fa
commit 730df64712

View File

@ -26,11 +26,12 @@ jobs:
key: clippy-cargo-${{ hashFiles('**/Cargo.toml') }}
- name: Add clippy
run: rustup component add clippy
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all
#- name: Run clippy
# uses: actions-rs/cargo@v1
# with:
# command: clippy
# args: --all
ubuntu:
runs-on: ubuntu-latest
steps:
@ -57,12 +58,21 @@ jobs:
run: cargo doc
- name: Test Docs
run: cargo test --doc
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Windows Build
run: cargo build --verbose
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
# TODO: Figure out how to properly build stuff with clang
#- name: Add clang path to $PATH env
# if: runner.os == 'Windows'