chore(deps): bump rustls-webpki from 0.103.4 to 0.103.10 (#4077) #1744
This file contains hidden or 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: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/clippy.yml" | |
| - "tools/**/*" | |
| - "examples/**/*" | |
| - "packages/**/*" | |
| - "Cargo.toml" | |
| - "Cargo.lock" | |
| push: | |
| branches: [master] | |
| jobs: | |
| feature-soundness: | |
| name: Feature Soundness | |
| runs-on: ubuntu-latest | |
| # if normal clippy doesn't succeed, do not try to lint feature soundness | |
| needs: clippy | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| profile: | |
| - dev | |
| - release | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| components: clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| save-if: ${{ github.ref == 'refs/heads/master' }} | |
| - uses: taiki-e/install-action@cargo-hack | |
| - name: Lint feature soundness | |
| if: matrix.profile == 'dev' | |
| run: >- | |
| cargo hack clippy | |
| -p yew -p yew-agent -p yew-router | |
| --feature-powerset --no-dev-deps | |
| --keep-going | |
| -- -D warnings | |
| - name: Lint feature soundness | |
| if: matrix.profile == 'release' | |
| run: >- | |
| cargo hack clippy | |
| -p yew -p yew-agent -p yew-router | |
| --feature-powerset --no-dev-deps | |
| --keep-going --release | |
| -- -D warnings | |
| clippy: | |
| name: Clippy Workspace | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: | |
| - stable | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup toolchain | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| components: clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| save-if: ${{ github.ref == 'refs/heads/master' }} | |
| - name: Run clippy | |
| run: | | |
| cargo clippy \ | |
| --all-targets \ | |
| --all-features \ | |
| --workspace \ | |
| -- -D warnings |