Adding ability to select SORTABLE_HTML as dump format to have sortable tables in HTML dumps. #532
Workflow file for this run
  
    
      This file contains hidden or 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
    
  
  
    
  | 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: [ 'pypy-2.7', '3.12' ] | |
| exclude: | |
| - os: macos-latest | |
| python-version: 'pypy-2.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 |