~jplatte/cargo-depgraph

261981ea8cf38530893e2e2eab064c11eac3fd60 — Jonas Platte 9 months ago 5057b01
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.
1 files changed, 8 insertions(+), 8 deletions(-)

M .github/workflows/ci.yml
M .github/workflows/ci.yml => .github/workflows/ci.yml +8 -8
@@ 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