Skip to content

Commit 0302e19

Browse files
authored
Merge pull request #753 from jonasferoz/label-testing-data
Label testing data
2 parents 198f4d1 + a167f6a commit 0302e19

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ jobs:
9090
openai-version: ["1.2.4"]
9191
steps:
9292
- uses: actions/checkout@v4
93+
94+
- name: Create .guardrailsrc
95+
run: |
96+
echo 'id="SYSTEM TESTING"' > ~/.guardrailsrc
97+
echo 'no_metrics=false' >> ~/.guardrailsrc
98+
9399
- name: Set up Python ${{ matrix.python-version }}
94100
uses: actions/setup-python@v5
95101
with:

.github/workflows/examples_check.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ jobs:
2323
NLTK_DATA: /tmp/nltk_data
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v4
27+
- name: Create .guardrailsrc
28+
run: |
29+
echo 'id="SYSTEM TESTING"' > ~/.guardrailsrc
30+
echo 'no_metrics=false' >> ~/.guardrailsrc
2731
- name: Set up Python
2832
uses: actions/setup-python@v5
2933
with:

0 commit comments

Comments
 (0)