chore: remove proving grounds tests #546
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Static Analysis" | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
with: | |
path: src/github.com/juju/juju-qa-jenkins | |
- name: "Static Analysis: Shell Check" | |
run: | | |
STATIC_ANALYSIS_JOB=test_static_analysis_shell make static-analysis | |
shell: bash | |
- name: "Static Analysis: Yaml Check" | |
run: | | |
STATIC_ANALYSIS_JOB=test_static_analysis_yaml make static-analysis | |
shell: bash |