diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 426d0051..18dc8a80 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,5 +19,15 @@ jobs: with: toolchain: stable - uses: Swatinem/rust-cache@v1 + - name: Build - run: cargo test --verbose \ No newline at end of file + uses: actions-rs/cargo@v1 + with: + command: test + args: --verbose + + - name: Check formatting + uses: actions-rs/cargo@v1 + with: + command: fmt + args: --all -- --check