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 44afd93 commit abc0d29Copy full SHA for abc0d29
.github/workflows/ci.yml
@@ -17,7 +17,9 @@ jobs:
17
steps:
18
- uses: actions/checkout@v4
19
- name: Install Rust
20
- run: rustup update stable
+ uses: dtolnay/rust-toolchain@master
21
+ with:
22
+ toolchain: 1.81 # because 1.82 broke tests with main functions in them
23
24
- name: Build dependencies
25
run: RUSTFLAGS="--cfg tokio_unstable" cargo build
@@ -50,7 +52,7 @@ jobs:
50
52
51
53
- uses: actions/setup-node@v4
54
with:
- node-version: '18'
55
+ node-version: "18"
56
57
- name: Install node dependencies
58
run: npm install
rust-toolchain.toml
@@ -0,0 +1,3 @@
1
+[toolchain]
2
+# rust 1.82 introduced a breaking change that causes the doc tests to fail
3
+channel = "1.81"
0 commit comments