sqlmap/.github/workflows/tests.yml

25 lines
588 B
YAML
Raw Normal View History

2021-09-29 16:43:13 +03:00
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
2021-10-01 11:10:12 +03:00
runs-on: ubuntu-latest
2021-09-29 16:43:13 +03:00
strategy:
matrix:
2021-10-01 11:10:12 +03:00
python-version: [ '3.x', 'pypy-3.7' ]
2021-09-29 16:43:13 +03:00
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Basic import test
run: python -c "import sqlmap; import sqlmapapi"
- name: Smoke test
run: python sqlmap.py --smoke
- name: Vuln test
run: python sqlmap.py --vuln