mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 15:49:46 -08:00
22 lines
349 B
YAML
22 lines
349 B
YAML
name: PIP audit
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 8 * * 1'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.11"]
|
|
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: pypa/gh-action-pip-audit@v1.0.8
|
|
with:
|
|
inputs: .
|