cf3c205fa5
* Revert "Update tests to not run all the time (#2311)"
This reverts commit 2c03eee329
.
* Make CI only runs on PRs that are ready
* Remove CI Tasks on Push
36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
name: Security Analysis
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
jobs:
|
|
bandit:
|
|
if: github.event.pull_request.draft == false
|
|
name: type-check-${{ matrix.config.python-version }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
config:
|
|
- { python-version: 3.7, tox-env: security}
|
|
- { python-version: 3.8, tox-env: security}
|
|
- { python-version: 3.9, tox-env: security}
|
|
- { python-version: "3.10", tox-env: security}
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@v2
|
|
id: checkout-branch
|
|
|
|
- name: Run Linter Checks
|
|
id: linter-check
|
|
uses: harshanarayana/custom-actions@main
|
|
with:
|
|
python-version: ${{ matrix.config.python-version }}
|
|
test-infra-tool: tox
|
|
test-infra-version: latest
|
|
action: tests
|
|
test-additional-args: "-e=${{ matrix.config.tox-env }}"
|