Skip to content

Commit

Permalink
Add smoke test FFI
Browse files Browse the repository at this point in the history
  • Loading branch information
hansott committed Jan 8, 2025
1 parent 97236fb commit 7cb8403
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/smoke-test-ffi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Smoke Test for FFI

on: [pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: make install

- name: Run tests
run: poetry run pytest aikido_zen/vulnerabilities/sql_injection/init_test.py

0 comments on commit 7cb8403

Please sign in to comment.