We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00581f5 commit 194e7a5Copy full SHA for 194e7a5
.github/workflows/ci.yml
@@ -47,6 +47,14 @@ jobs:
47
run: cargo test -- --test-threads=1
48
env:
49
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all
50
+ - name: Clone async-executor
51
+ run: git clone https://github.com/smol-rs/async-executor.git
52
+ - name: Add patch section
53
+ run: |
54
+ echo '[patch.crates-io]' >> async-executor/Cargo.toml
55
+ echo 'async-task = { path = ".." }' >> async-executor/Cargo.toml
56
+ - name: Test async-executor
57
+ run: cargo test --manifest-path async-executor/Cargo.toml
58
59
msrv:
60
runs-on: ubuntu-latest
0 commit comments