Skip to content

Commit

Permalink
CICD action updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Wiley committed Mar 3, 2021
1 parent 674c05a commit 6db0515
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
test:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -29,7 +30,7 @@ jobs:
run: make test

code-scan:
name: Analyze
name: Static Code Analysis
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 6db0515

Please sign in to comment.