Skip to content

Manage python dependencies within workflow #231

Manage python dependencies within workflow

Manage python dependencies within workflow #231

Workflow file for this run

name: Unit Tests
on:
push:
workflow_dispatch:
jobs:
tox-unit-test:
runs-on: [self-hosted, linux]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install tox
- run: tox -- -m "not systest"