Test #4
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
name: Test | |
on: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Run test in FreeBSD | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test in FreeBSD | |
id: test | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
usesh: true | |
prepare: | | |
pkg install -y git node npm python3 | |
run: | | |
git clone https://github.com/open-webui/open-webui.git | |
cd open-webui/ | |
cp -RPp .env.example .env | |
npm i | |
npm run build | |
cd ./backend | |
pip install -r requirements.txt -U | |
# bash start.sh |