Skip to content

Commit 1570c1b

Browse files
authored
Merge pull request #3 from guardrails-ai/ci-cleanup
[GR-1025]: CI Cleanup
2 parents 4e6e8a2 + 97cb409 commit 1570c1b

File tree

4 files changed

+7
-24
lines changed

4 files changed

+7
-24
lines changed

.github/workflows/pr_qc.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ jobs:
99
steps:
1010
- name: Check out repository code
1111
uses: actions/checkout@v4
12-
- name: Set up Python
13-
uses: actions/setup-python@v5
12+
- name: Install the latest version of uv
13+
uses: astral-sh/setup-uv@v7
1414
with:
1515
python-version: 3.11
1616
- name: Run qa
1717
run: |
18-
pip install ".[dev]"
18+
python -m venv ./.venv
19+
source ./.venv/bin/activate
20+
make dev
1921
make qa

.github/workflows/publish_pypi.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

validator/main.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
from typing import Any, Callable, Dict, Optional
2-
from guardrails import Guard
3-
import openai
42
import logging
53
from guardrails.validator_base import (
64
FailResult,

0 commit comments

Comments
 (0)