Skip to content

Commit

Permalink
Add repotests.yml.
Browse files Browse the repository at this point in the history
Signed-off-by: Caroline Russell <caroline@appthreat.dev>
  • Loading branch information
cerrussell committed Feb 15, 2024
1 parent 35d9f41 commit 19754e4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/repotests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Repo tests

on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install blint
run: |
python -m pip install poetry
poetry install
- uses: actions/checkout@v4
with:
repository: juice-shop/juicy-malware
path: juicy_malware
- name: Test
run: |
poetry run blint -i juicy_malware -o /home/runner/work/reports
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: reports
path: /home/runner/work/reports

0 comments on commit 19754e4

Please sign in to comment.