Add files via upload #33
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: CI PR Linting and Security | |
on: | |
pull_request: | |
# branches: [ master ] | |
jobs: | |
ci: | |
environment: Dev | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
poetry-version: ["1.1.13", "1.1.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Poetry ${{ matrix.poetry-version }} | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: ${{ matrix.poetry-version }} | |
- name: Set Poetry env to use Python ${{ matrix.python-version }} | |
run: | | |
poetry env use ${{ matrix.python-version }} | |
- name: Install dependencies with Poetry | |
run: | | |
poetry install -E github | |
echo "::set-output name=POETRY_VENV::$(poetry env info -p)" | |
id: install | |
- name: Lint with flake8 | |
run: | | |
# work from the virtualenv | |
source ${{ steps.install.outputs.POETRY_VENV }}/bin/activate | |
# stop the build if there are Python syntax errors or undefined names | |
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Bandit Security scan | |
run: | | |
poetry run bandit -c bandit.yml -r ciscoaxl |