From b854318214908a4e08994fefb9c0db32f8977acb Mon Sep 17 00:00:00 2001 From: colin99d Date: Fri, 25 Nov 2022 08:20:35 +0100 Subject: [PATCH] Update ci formatting --- .github/workflows/rust.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 0015ce6f..37034e43 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,25 +16,25 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v3 - - name: Build + - name: Build mac run: cargo build --verbose - - name: Run tests + - name: Run tests mac run: cargo test --verbose name: Linux runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Build + - name: Build linux run: cargo build --verbose - - name: Run tests + - name: Run tests linux run: cargo test --verbose name: Windows runs-on: windows-latest steps: - uses: actions/checkout@v3 - - name: Build + - name: Build windows run: cargo build --verbose - - name: Run tests + - name: Run tests windows run: cargo test --verbose