From e78d33a5bf691298be83015a348c7e64016b4687 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 17 Jul 2020 11:21:18 +0200 Subject: [PATCH] Update test command on CI for build-std --- .github/workflows/build-code.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-code.yml b/.github/workflows/build-code.yml index 0506c9e5..06efaae2 100644 --- a/.github/workflows/build-code.yml +++ b/.github/workflows/build-code.yml @@ -63,6 +63,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: bootimage + # install QEMU - name: Install QEMU (Linux) run: sudo apt update && sudo apt install qemu-system-x86 @@ -87,8 +88,10 @@ jobs: - name: "Print QEMU Version" run: qemu-system-x86_64 --version - - name: "Run cargo xtest" - run: cargo xtest + - name: Run `cargo test` + uses: actions-rs/cargo@v1 + with: + command: test check_formatting: name: Check Formatting