Skip to content

Add LiveStream class for managing live queries #24

Add LiveStream class for managing live queries

Add LiveStream class for managing live queries #24

Workflow file for this run

name: Code Stability
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: stability-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
stability:
name: Code Stability
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build Python
uses: ./.github/actions
- name: Install tools
run: poetry install --only dev
- id: ruff
if: always()
run: poetry run ruff --format=github surrealdb/
- id: Black
if: always()
run: poetry run black surrealdb/ --check --verbose --diff --color
- id: mypy
if: always()
run: poetry run mypy surrealdb/