chore(deps): update rust crate crossbeam-channel to v0.5.15 [security… #380
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: | |
| paths: | |
| - '**' | |
| - '!*.md' | |
| - "!/LICENSE" | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '**' | |
| - '!*.md' | |
| - "!/LICENSE" | |
| jobs: | |
| test: | |
| name: Test | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| rust: ["stable"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.rust }} | |
| profile: minimal | |
| override: true | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Default features | |
| run: cargo test --workspace |