Skip to content

feat(Redis): ADR

feat(Redis): ADR #33

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.dev.txt ]; then pip install -r requirements.dev.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test Unit
run: |
mkdir /tmp/sqlflow
mkdir /tmp/sqlflow/resultscache
make test-unit