Skip to content

Add BigQuery live data source via first-order-engine #66

Add BigQuery live data source via first-order-engine

Add BigQuery live data source via first-order-engine #66

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest pyflakes
- name: Lint (pyflakes)
run: python -m pyflakes prox main.py
- name: Test (pytest)
run: python -m pytest tests/ -v