This commit is contained in:
Stjepan Glavina 2020-09-14 20:38:59 +02:00
parent d8c32a0140
commit 46634fc32a
1 changed files with 5 additions and 3 deletions

View File

@ -59,8 +59,10 @@ jobs:
command: test
- name: Clone async-io
run: git clone https://github.com/stjepang/async-io.git && cd async-io
run: git clone https://github.com/stjepang/async-io.git
- name: Add patch section
run: echo '[patch.crates-io]' >> async-io/Cargo.toml
- name: Patch polling
run: echo '[patch.crates-io]' >> Cargo.toml && echo 'polling = { path = ".." }' >> Cargo.toml
run: echo 'polling = { path = ".." }' >> async-io/Cargo.toml
- name: Test async-io
run: cargo test
run: cargo test --manifest-path=async-io/Cargo.toml