Reimplement channels using custom LinkedList impl #11
Workflow file for this run
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: mpmc-async | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust-version: ["1.76"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- run: apt install valgrind jq | |
- run: cargo fmt --check | |
- run: cargo clippy | |
- run: ./test.sh |