diff options
author | morpheus65535 <[email protected]> | 2021-06-20 09:12:31 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-06-20 09:12:31 -0400 |
commit | 5b3e2ee51f3930c71a9951a462adeb2c46c7e787 (patch) | |
tree | b0e84957827ad5af2a601cd163dc76d3300a56d2 | |
parent | 557a06173df4239ab1bd089779c09b049fb41ac4 (diff) | |
download | bazarr-5b3e2ee51f3930c71a9951a462adeb2c46c7e787.tar.gz bazarr-5b3e2ee51f3930c71a9951a462adeb2c46c7e787.zip |
no log: test action to make sure that Bazarr is starting properly
-rw-r--r-- | .github/workflows/ci.yml | 14 |
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' |