Editable mode of vmtk #21
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: Linux tests | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| inputs: | |
| git-ref: | |
| description: Git Ref | |
| default: master | |
| required: true | |
| debug_enabled: | |
| type: boolean | |
| description: 'tmate debug enabled' | |
| required: false | |
| default: false | |
| schedule: | |
| - cron: "0 1 * * 0" | |
| jobs: | |
| vulnerability_test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-24.04] | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Setup debugging session | |
| uses: mxschmitt/action-tmate@v3 | |
| timeout-minutes: 60 | |
| if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
| - name: Install Package | |
| run: | | |
| pip install -e . | |
| - name: Run tests | |
| run: | | |
| cd src/vmtk | |
| pytest --doctest-modules -x --color=yes --durations=10 tests/ |