From 09828b921387c7d599de18bff89b4fd73f822344 Mon Sep 17 00:00:00 2001 From: funkill2 Date: Sat, 11 May 2024 04:00:17 +0300 Subject: [PATCH] update original --- rustbook-en/.github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/rustbook-en/.github/workflows/main.yml b/rustbook-en/.github/workflows/main.yml index db70f67da..04b855e8c 100644 --- a/rustbook-en/.github/workflows/main.yml +++ b/rustbook-en/.github/workflows/main.yml @@ -26,6 +26,21 @@ jobs: mdbook --version - name: Run tests run: mdbook test + package_tests: + name: Run package tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Update rustup + run: rustup self update + - name: Install Rust + run: | + rustup set profile minimal + rustup toolchain install 1.76 -c rust-docs + rustup default 1.76 + - name: Run package tests + run: | + cargo test lint: name: Run lints runs-on: ubuntu-latest