Skip to content

Use new core schemas in guardrails API #117

Use new core schemas in guardrails API

Use new core schemas in guardrails API #117

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;
cp ./.venv/lib/python3.12/site-packages/guardrails_api_client/openapi-spec.json ./open-api-spec.json
- name: Run Quality Checks
run: |
source ./.venv/bin/activate
make qa;