This is an automated email from the ASF dual-hosted git repository.

martin-g pushed a commit to branch rdme-on-nightly
in repository https://gitbox.apache.org/repos/asf/avro-rs.git

commit 1d093599d9edef4152078dcc0da21f4e19ca2587
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Thu Jun 25 08:46:19 2026 +0300

    Run cargo-rdme with nightly toolchain
    
    v2.x fails with:
    ```
    error: failed to transform intralinks: rust toolchain not installed: nightly
    ```
    
    https://github.com/orium/cargo-rdme/releases/tag/v2.0.0
---
 .github/workflows/test-lang-rust-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/test-lang-rust-ci.yml 
b/.github/workflows/test-lang-rust-ci.yml
index 8373508..c96dcdd 100644
--- a/.github/workflows/test-lang-rust-ci.yml
+++ b/.github/workflows/test-lang-rust-ci.yml
@@ -67,7 +67,7 @@ jobs:
           tool: cargo-expand
 
       - uses: taiki-e/install-action@v2
-        if: matrix.rust == 'stable' && matrix.runner.target == 
'x86_64-unknown-linux-gnu'
+        if: matrix.rust == 'nightly' && matrix.runner.target == 
'x86_64-unknown-linux-gnu'
         with:
           tool: cargo-rdme
 
@@ -99,7 +99,7 @@ jobs:
       # Check if the doc cumment in avro/src/lib.rs and avro/README.md are in 
sync.
       - name: Run cargo-rdme
         # The result is environment independent, so one test pattern is enough.
-        if: matrix.rust == 'stable' && matrix.runner.target == 
'x86_64-unknown-linux-gnu'
+        if: matrix.rust == 'nightly' && matrix.runner.target == 
'x86_64-unknown-linux-gnu'
         run: cargo rdme --check
 
       - name: Run cargo doc

Reply via email to