From 8062dc6d3a3421185365ff3a87d486651d5e405c Mon Sep 17 00:00:00 2001 From: Amaury Carrade Date: Thu, 8 Apr 2021 15:28:06 +0200 Subject: [PATCH] Renamed jobs to be more accurate --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8a51e6..8d4ad5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ env: CARGO_TERM_COLOR: always jobs: - build: + test: runs-on: ubuntu-latest steps: @@ -23,7 +23,7 @@ jobs: deploy: runs-on: ubuntu-latest - needs: ["build"] + needs: ["test"] # only for commits to the master branch if: "github.ref == 'refs/heads/master'"