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