Skip to content

Allow to skip the security scan #18

Allow to skip the security scan

Allow to skip the security scan #18

Workflow file for this run

name: lint
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: install Python dependencies
run: |
pip install -r requirements.txt
pip install bandit flake8 pyright
- name: run flake8
run: flake8
- name: run bandit
run: bandit -r deterrersapi
- name: run pyright
run: pyright --skipunannotated deterrersapi