Combine package requirements into single file

This commit is contained in:
JonnyWong16 2021-10-15 17:24:07 -07:00
commit 81d8d5e1ae
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
4 changed files with 12 additions and 15 deletions

View file

@ -59,13 +59,13 @@ jobs:
uses: actions/cache@v2
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-pip-${{ hashFiles(format('package/requirements-{0}.txt', matrix.os)) }}
key: ${{ runner.os }}-pip-${{ hashFiles('package/requirements-package.txt') }}
restore-keys: ${{ runner.os }}-pip-
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r package/requirements-${{ matrix.os }}.txt
pip install -r package/requirements-package.txt
- name: Build Package
run: |