Skip to content

Commit

Permalink
Remove unnecessary "pip" in workflow names (now that we only have those)
Browse files Browse the repository at this point in the history
  • Loading branch information
Balandat committed Nov 7, 2024
1 parent 78e1e98 commit c2b1497
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_on_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:

jobs:

tests-and-coverage-pip:
tests-and-coverage:
name: Test & Coverage
uses: ./.github/workflows/reusable_test_pip.yml
uses: ./.github/workflows/reusable_test.yml
with:
use_latest_pytorch_gpytorch: false
secrets: inherit
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
id-token: write # This is required for PyPI OIDC authentication.
needs: tests-and-coverage-pip
needs: tests-and-coverage
steps:
- uses: actions/checkout@v4
- name: Fetch all history for all tags and branches
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
tests-and-coverage-nightly:
name: Test & Coverage
uses: ./.github/workflows/reusable_test_pip.yml
uses: ./.github/workflows/reusable_test.yml
with:
use_latest_pytorch_gpytorch: true
secrets: inherit
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Reusable Test Workflow w/ pip
name: Reusable Test Workflow

on:
workflow_call:
Expand All @@ -13,8 +13,8 @@ on:


jobs:
tests-and-coverage-pip:
name: Tests and coverage (pip, Python ${{ matrix.python-version }}, ${{ matrix.os }})
tests-and-coverage:
name: Tests and coverage (Python ${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ on:

jobs:

tests-and-coverage-pip:
name: Test & Coverage (pip)
uses: ./.github/workflows/reusable_test_pip.yml
tests-and-coverage:
name: Test & Coverage
uses: ./.github/workflows/reusable_test.yml
with:
use_latest_pytorch_gpytorch: true
secrets: inherit
8 changes: 4 additions & 4 deletions .github/workflows/test_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ on:

jobs:

tests-and-coverage-pip-stable:
tests-and-coverage-stable:
name: Test & Coverage
uses: ./.github/workflows/reusable_test_pip.yml
uses: ./.github/workflows/reusable_test.yml
with:
use_latest_pytorch_gpytorch: false
upload_coverage: false
secrets: inherit

tests-and-coverage-min-req-pip:
name: Tests and coverage min req. torch, gpytorch & linear_operator versions (pip, Python ${{ matrix.python-version }}, ${{ matrix.os }})
tests-and-coverage-min-req:
name: Tests and coverage min req. torch, gpytorch & linear_operator versions (Python ${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down

0 comments on commit c2b1497

Please sign in to comment.