Skip to content

feat: activate realtime #513

feat: activate realtime

feat: activate realtime #513

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
pull-requests: write
checks: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toxenv: ["-e core", "-e installed", ""] # "" runs the default tox environment. Explicitly defining allows running individual tox environments
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run tox ${{ matrix.toxenv }}
env:
PYTEST_WORKERS: 2
run: tox ${{ matrix.toxenv }}
timeout-minutes: 3