Create tests.yml

This commit is contained in:
Miroslav Stampar 2021-09-29 15:43:13 +02:00 committed by GitHub
parent 7f8e38bacf
commit 7bb91805db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/tests.yml vendored Normal file
View File

@ -0,0 +1,25 @@
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ '2.x', '3.x', 'pypy-2.7', 'pypy-3.6', 'pypy-3.7' ]
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