From df706a3ffb6d1a1db00d611da666a2154d16166a Mon Sep 17 00:00:00 2001 From: Edgar Date: Wed, 9 Nov 2022 10:47:57 +0100 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 75959c5..d54fa2f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,9 +2,9 @@ name: Rust on: push: - branches: [ master ] + branches: [ "master" ] pull_request: - branches: [ master ] + branches: [ "master" ] env: CARGO_TERM_COLOR: always @@ -15,6 +15,8 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Build run: cargo build --verbose + - name: Run tests + run: cargo test --verbose