summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2021-06-20 09:12:31 -0400
committermorpheus65535 <[email protected]>2021-06-20 09:12:31 -0400
commit5b3e2ee51f3930c71a9951a462adeb2c46c7e787 (patch)
treeb0e84957827ad5af2a601cd163dc76d3300a56d2 /.github
parent557a06173df4239ab1bd089779c09b049fb41ac4 (diff)
downloadbazarr-5b3e2ee51f3930c71a9951a462adeb2c46c7e787.tar.gz
bazarr-5b3e2ee51f3930c71a9951a462adeb2c46c7e787.zip
no log: test action to make sure that Bazarr is starting properly
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c4d1f73e3..06c34f9f0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -44,3 +44,17 @@ jobs:
with:
name: "ui"
path: "${{ env.UI_DIRECTORY }}/build"
+
+ - name: Set up Python 3.8
+ uses: actions/setup-python@v2
+ with:
+ python-version: '3.8'
+
+ - name: Install Python dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r './requirements.txt'
+
+ - name: Test Bazarr execution
+ run: |
+ bash '.github/scripts/build_test.sh'