Skip to content

fix markdown doc test code hiding to match librustdoc (#751) #581

fix markdown doc test code hiding to match librustdoc (#751)

fix markdown doc test code hiding to match librustdoc (#751) #581

Workflow file for this run

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
name: CI
env:
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
jobs:
doc-test:
name: Test code blocks in markdown
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Build dependencies
run: RUSTFLAGS="--cfg tokio_unstable" cargo build
working-directory: doc-test
continue-on-error: true
- name: Actually run the tests
run: RUSTFLAGS="--cfg tokio_unstable" cargo test
working-directory: doc-test
tutorial-code:
name: Test tutorial-code directory
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Build dependencies
run: cargo build --all
working-directory: tutorial-code
continue-on-error: true
- name: Actually run the tests
run: cargo test --all
working-directory: tutorial-code