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.
39 lines
848 B
39 lines
848 B
---
|
|
name: pip-audit
|
|
|
|
on:
|
|
push:
|
|
branches: [ dev, master ]
|
|
pull_request:
|
|
branches: [ dev, master ]
|
|
schedule: [ cron: "0 7 * * 2" ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
audit:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.10"
|
|
|
|
- name: Install Slither
|
|
run: |
|
|
python -m venv /tmp/pip-audit-env
|
|
source /tmp/pip-audit-env/bin/activate
|
|
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
python -m pip install .
|
|
|
|
- name: Run pip-audit
|
|
uses: pypa/gh-action-pip-audit@v1.0.8
|
|
with:
|
|
virtual-environment: /tmp/pip-audit-env
|
|
|