Skip to content

feat(runtime): add support for custom python executable and env in scans #2

feat(runtime): add support for custom python executable and env in scans

feat(runtime): add support for custom python executable and env in scans #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: uv sync --group dev
- name: Run tests
run: uv run pytest -q