Skip to content

Basic Streaming and In-Memory Guard Support #107

Basic Streaming and In-Memory Guard Support

Basic Streaming and In-Memory Guard Support #107

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Pull Request Quality Checks
# Controls when the workflow will run
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
name: PR checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
- name: Install Dependencies
run: |
python -m venv ./.venv
source ./.venv/bin/activate
make install-lock;
make install-dev;
curl https://raw.githubusercontent.com/guardrails-ai/guardrails-api-client/main/service-specs/guardrails-service-spec.yml -o ./open-api-spec.yml
npx @redocly/cli bundle --dereferenced --output ./open-api-spec.json --ext json ./open-api-spec.yml
- name: Run Quality Checks
run: |
source ./.venv/bin/activate
make qa;