# Install Python dependencies, run tests name: PyTest on: push: branches: [ "kn/x", "main","kn/dusk" ] pull_request: branches: [ "kn/x", "main","kn/dusk" ] permissions: contents: read jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: 3.13 - name: Install dependencies and run Test run: | python -m pip install --upgrade pip python -m venv .venv source .venv/bin/activate pip install .[dev] pytest -vv