This repository was archived by the owner on Jul 14, 2026. It is now read-only.
Python version update #135
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
| name: 'Runs with Python3.10 - Python3.14' | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| boots: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [ '3.10.x', '3.11.x', '3.12.x', '3.13.x', '3.14.x' ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install maltego-trx | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install wheel | |
| pip3 install . | |
| - name: Create starter Project | |
| run: | | |
| maltego-trx start test | |
| cd test | |
| python3 project.py list |