mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
593 B
27 lines
593 B
name: pip-audit
|
|
|
|
on:
|
|
push:
|
|
branches: [ dev, master ]
|
|
pull_request:
|
|
branches: [ dev, master ]
|
|
schedule: [ cron: "0 7 * * 2" ]
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.10"
|
|
- name: Install pip-audit
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install pip-audit
|
|
- name: Run pip-audit
|
|
run: |
|
|
python -m pip install .
|
|
pip-audit --desc -v
|
|
|