This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
forked from onyx-dot-app/onyx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21d5cc4
commit 54dc1ac
Showing
1 changed file
with
16 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,21 +23,6 @@ jobs: | |
with: | ||
version: v3.14.4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' | ||
cache: 'pip' | ||
cache-dependency-path: | | ||
backend/requirements/default.txt | ||
backend/requirements/dev.txt | ||
backend/requirements/model_server.txt | ||
- run: | | ||
python -m pip install --upgrade pip | ||
pip install --retries 5 --timeout 30 -r backend/requirements/default.txt | ||
pip install --retries 5 --timeout 30 -r backend/requirements/dev.txt | ||
pip install --retries 5 --timeout 30 -r backend/requirements/model_server.txt | ||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
|
||
|
@@ -52,6 +37,22 @@ jobs: | |
echo "changed=true" >> "$GITHUB_OUTPUT" | ||
fi | ||
# rkuo: I don't think we need python? | ||
# - name: Set up Python | ||
# uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: '3.11' | ||
# cache: 'pip' | ||
# cache-dependency-path: | | ||
# backend/requirements/default.txt | ||
# backend/requirements/dev.txt | ||
# backend/requirements/model_server.txt | ||
# - run: | | ||
# python -m pip install --upgrade pip | ||
# pip install --retries 5 --timeout 30 -r backend/requirements/default.txt | ||
# pip install --retries 5 --timeout 30 -r backend/requirements/dev.txt | ||
# pip install --retries 5 --timeout 30 -r backend/requirements/model_server.txt | ||
|
||
# lint all charts if any changes were detected | ||
- name: Run chart-testing (lint) | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|