From 50666daa2999403f3d68b438117973470755353f Mon Sep 17 00:00:00 2001 From: Max Mielchen <94404446+maxmielchen@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:55:18 +0100 Subject: [PATCH] Update testing.yml --- .github/workflows/testing.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 48e46fe..5c76235 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -6,17 +6,15 @@ on: pull_request: branches: [ "main" ] -env: - CARGO_TERM_COLOR: always - jobs: - build: - + test: runs-on: ubuntu-latest - steps: - uses: actions/checkout@v3 - - name: Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - uses: actions-rs/cargo@v1 + with: + command: test + args: --vorbose