From 6db05159530ca795918fdaa26ef751286407e0e0 Mon Sep 17 00:00:00 2001 From: Justin Wiley Date: Wed, 3 Mar 2021 14:58:01 -0800 Subject: [PATCH] CICD action updates. --- .github/workflows/cicd.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index a7092367..8a6cc4f3 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -10,6 +10,7 @@ on: jobs: test: + name: Unit Tests runs-on: ubuntu-latest strategy: matrix: @@ -29,7 +30,7 @@ jobs: run: make test code-scan: - name: Analyze + name: Static Code Analysis runs-on: ubuntu-latest strategy: @@ -74,11 +75,12 @@ jobs: uses: github/codeql-action/analyze@v1 deploy: + name: Deploy to PyPi runs-on: ubuntu-latest needs: - test - code-scan - if: github.event.release == 'create' + if: github.event.release.create steps: - uses: actions/checkout@v2 - name: Set up Python