From 7e28bd7d73f75709237d2c03e530de641983b120 Mon Sep 17 00:00:00 2001 From: Chris Krycho Date: Fri, 10 May 2024 08:37:33 -0600 Subject: [PATCH] infra: run package tests With the introduction of the workspace, we were missing coverage for the supporting packages. --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index db70f67da2..04b855e8c8 100644 --- a/.github/workflows/main.yml +++ b/.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