From 261981ea8cf38530893e2e2eab064c11eac3fd60 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 8 Dec 2023 11:06:55 +0100 Subject: [PATCH] ci: Enable test job There are no tests right now, but this ensures that cargo-depgraph compiles successfully on stable (there were no jobs using a stable toolchain before), and will start running tests once they're added. --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9fba77..02f9c9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,14 @@ env: CARGO_TERM_COLOR: always jobs: - #test: - # name: Run tests (Rust stable) - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v4 - # - uses: dtolnay/rust-toolchain@stable - # - uses: Swatinem/rust-cache@v2 - # - run: cargo test + test: + name: Run tests (Rust stable) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - uses: Swatinem/rust-cache@v2 + - run: cargo test --locked formatting: name: Check Formatting -- 2.45.2