From d754539dbd700324da9853090608924a00cb97c2 Mon Sep 17 00:00:00 2001 From: chris west Date: Mon, 27 Jan 2020 19:35:12 -0800 Subject: [PATCH] use the smaller name --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b795668..cbb7ba3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,10 +1,10 @@ -on: +on: push: branches: [master] pull_request: branches: ["*"] -name: Run Tests +name: ci jobs: test_macos: @@ -34,11 +34,11 @@ jobs: toolchain: stable override: true - name: check - run: cargo check + run: cargo check - name: clippy run: cargo clippy - name: test - run: cargo test + run: cargo test - name: build run: cargo build --release @@ -63,10 +63,10 @@ jobs: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - name: check - run: cargo check + run: cargo check - name: clippy run: cargo clippy - name: test - run: cargo test + run: cargo test - name: build run: cargo build --release