Skip to content

Commit 53ad553

Browse files
committed
CI: don't attempt CI with a requirements file that's no longer there
1 parent e6f0e36 commit 53ad553

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/test-build.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
python-version: ["3.8", "3.10"]
16-
requirements-file: ["pt2", "pt13"]
1716
steps:
1817
- uses: actions/checkout@v2
1918
- name: Set up Python ${{ matrix.python-version }}
@@ -23,5 +22,5 @@ jobs:
2322
- name: Install dependencies
2423
run: |
2524
python -m pip install --upgrade pip
26-
pip install -r requirements/${{ matrix.requirements-file }}.txt
27-
pip install .
25+
pip install -r requirements/pt2.txt
26+
pip install .

0 commit comments

Comments
 (0)