This repository was archived by the owner on Feb 2, 2026. It is now read-only.
fix(deps): update rust crate tempfile to v3.20.0 #793
Workflow file for this run
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: CI | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - main | |
| env: | |
| RUSTFLAGS: '-Dwarnings' | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Rust toolchain | |
| run: rustup toolchain install nightly --no-self-update --profile default --target wasm32-unknown-unknown | |
| - name: Set up Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| save-if: ${{ github.ref == 'refs/heads/main' }} | |
| - name: Check formatting | |
| run: cargo fmt --all --check | |
| - name: Lint | |
| run: cargo clippy --all-features | |
| - name: Test | |
| run: cargo test --all-features |