diff options
author | morpheus65535 <[email protected]> | 2021-06-20 09:19:02 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-06-20 09:19:02 -0400 |
commit | 71a8c28dac0cf0febc7fce102d6143306379567d (patch) | |
tree | b4bc23b4d362cc1f24325940623a7cb21d83fd0d /.github | |
parent | 048c423f801b34fca69987590c44bb3b77a98adb (diff) | |
download | bazarr-71a8c28dac0cf0febc7fce102d6143306379567d.tar.gz bazarr-71a8c28dac0cf0febc7fce102d6143306379567d.zip |
no log: test action to make sure that Bazarr is starting properly
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 06c34f9f0..3fd5bad54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,7 @@ jobs: Frontend: runs-on: ubuntu-latest env: + ROOT_DIRECTORY: . UI_DIRECTORY: ./frontend steps: @@ -53,7 +54,7 @@ jobs: - name: Install Python dependencies run: | python -m pip install --upgrade pip - pip install -r './requirements.txt' + pip install -r '${{ env.ROOT_DIRECTORY }}/requirements.txt' - name: Test Bazarr execution run: | |