Make bls12_381_plus
dependency more flexible again
#4497
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: Clippy | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- 'epic/**' | |
- 'support/**' | |
paths: | |
- '.github/workflows/clippy.yml' | |
- '**.rs' | |
- '**.toml' | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Rust | |
uses: './.github/actions/rust/rust-setup' | |
with: | |
os: ${{ runner.os }} | |
job: ${{ github.job }} | |
target: wasm32-unknown-unknown | |
components: clippy | |
# Download a pre-compiled wasm-bindgen binary. | |
- name: Install wasm-bindgen-cli | |
uses: jetli/wasm-bindgen-action@24ba6f9fff570246106ac3f80f35185600c3f6c9 | |
- name: core clippy check | |
uses: actions-rs-plus/clippy-check@b09a9c37c9df7db8b1a5d52e8fe8e0b6e3d574c4 | |
with: | |
args: --all-targets --all-features -- -D warnings | |
- name: Wasm clippy check | |
uses: actions-rs-plus/clippy-check@b09a9c37c9df7db8b1a5d52e8fe8e0b6e3d574c4 | |
with: | |
args: --manifest-path ./bindings/wasm/Cargo.toml --target wasm32-unknown-unknown --all-targets --all-features -- -D warnings |