-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b36c5fa
commit 1c517ff
Showing
2 changed files
with
174 additions
and
151 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ permissions: | |
contents: read | ||
|
||
jobs: | ||
test: | ||
unit-tests: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
@@ -38,6 +38,27 @@ jobs: | |
- name: Core unit tests | ||
run: make test-core | ||
|
||
integration-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: 'Set up Python 3.10' | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install -r requirements.txt | ||
- name: Run GuardDog against a remote package | ||
run: python -m guarddog scan requests | ||
|
||
|
||
docker-build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
|
Oops, something went wrong.