Skip to content

Commit

Permalink
CI: don't attempt CI with a requirements file that's no longer there
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Aug 26, 2024
1 parent 1659a1c commit a658b90
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.8", "3.10"]
requirements-file: ["pt2", "pt13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -23,5 +22,5 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/${{ matrix.requirements-file }}.txt
pip install .
pip install -r requirements/pt2.txt
pip install .

0 comments on commit a658b90

Please sign in to comment.