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