-
Notifications
You must be signed in to change notification settings - Fork 12
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
4b6a569
commit a766769
Showing
1 changed file
with
26 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Open WebUI test | ||
on: | ||
push: {} | ||
pull_request: {} | ||
jobs: | ||
open_webui_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.x" | ||
- name: Check that open-webui files are up-to-date | ||
run: | | ||
python build/build_openwebui.py --mode=check | ||
- name: Download Open WebUI container image | ||
run: | | ||
docker pull ghcr.io/open-webui/open-webui:main | ||
- name: Run Open WebUI tool self-test | ||
run: | | ||
./tests/openwebui/tools/run_code_test.sh | ||
- name: Run Open WebUI function self-test | ||
run: | | ||
./tests/openwebui/functions/run_code_test.sh |