From eca0e3752905c9c55ab791e3254f2ef52cfe48ba Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Sat, 18 May 2024 17:13:42 +0200 Subject: [PATCH] Add Test workspace --- .github/workflows/workspace.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/workspace.yml b/.github/workflows/workspace.yml index 8d55b7e38e..448317bca6 100644 --- a/.github/workflows/workspace.yml +++ b/.github/workflows/workspace.yml @@ -23,3 +23,17 @@ jobs: components: clippy, rustfmt - name: Check workspace run: ./devtools/check_workspace.sh + + test-workspace: + name: Test workspace + runs-on: ubuntu-24.04 + steps: + - name: Checkout sources + uses: actions/checkout@v4 + - name: Install Rust + uses: dtolnay/rust-toolchain@master + with: + toolchain: 1.73.0 + components: rustfmt + - name: Test workspace + run: ./devtools/test_workspace.sh