This repository has been archived by the owner on Jun 8, 2024. It is now read-only.
Fix missing check for status = 3 (invalid selector) in Identity Porta… #170
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: 'Duo Dlint' | |
on: | |
push: | |
pull_request: | |
jobs: | |
security_checks: | |
# runs-on: ubuntu-latest | |
runs-on: ubuntu-22.04 | |
name: Execute the Duo Dlint action | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11.7 | |
- name: Run Dlint from Duo | |
run: | | |
pip3 install -e . | |
pip3 freeze > requirements.txt | |
pip3 install dlint | |
python3 -m flake8 --select=DUO ./Python |