Skip to content

Commit

Permalink
move actions to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gcroci2 committed Sep 5, 2024
1 parent 0051d34 commit 0bb5a1b
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 7 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/build-latest-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-python-and-package.yml
- uses: ./.github/workflows/_install-python-and-package.yml
with:
python-version: ${{ matrix.python-version }}
pkg-installation-type: "latest"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-repo-frozen-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: ./.github/actions/install-python-and-package.yml
- uses: ./.github/workflows/_install-python-and-package.yml
with:
python-version: ${{ matrix.python-version }}
extras-require: test, publishing
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: ./.github/actions/install-python-and-package.yml
- uses: ./.github/workflows/_install-python-and-package.yml
with:
python-version: ${{ matrix.python-version }}
extras-require: test, publishing
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-python-and-package.yml
- uses: ./.github/workflows/_install-python-and-package.yml
with:
python-version: ${{ matrix.python-version }}
extras-require: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: ./.github/actions/install-python-and-package.yml
- uses: ./.github/workflows/_install-python-and-package.yml
with:
python-version: ${{ matrix.python-version }}
extras-require: test, notebooks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
# if: needs.release_tag.outputs.skipped == 'false'
needs: release_tag
name: docker_image_deeprank2
uses: ./.github/actions/ghcr.yml
uses: ./.github/workflows/_ghcr.yml
with:
ghcr_user: ${{github.actor}}
base_image_name: ghcr.io/deeprank/deeprank2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/install-python-and-package.yml
- uses: ./.github/workflows/_install-python-and-package.yml
with:
python-version: ${{ matrix.python-version }}
extras-require: publishing
Expand Down

0 comments on commit 0bb5a1b

Please sign in to comment.