Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/guarddog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on: [ push, pull_request ]
name: guarddog security checkup
jobs:
guarddog:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v3
- run: pacman --noconfirm -Syu git python python-setuptools python-pip python-build python-poetry
- run: python -m pip install --upgrade pip
- run: pip install git+https://github.com/DataDog/guarddog.git
- run: python --version
- name: run build
run: python -m build
- name: run guarddog on archinstall
run: guarddog scan dist/*.tar.gz --exit-non-zero-on-finding
- name: run guarddog on dependencies
run: xargs guarddog scan --exit-non-zero-on-finding <requirements.txt