-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from radusuciu/main
Add support for singularity v4
- Loading branch information
Showing
3 changed files
with
60 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,36 @@ | ||
name: Test Actions | ||
on: | ||
workflow_dispatch: | ||
pull_request: [] | ||
|
||
jobs: | ||
install-singuarity: | ||
install-singularity: | ||
name: Install with defaults | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
- name: Singularity install defaults | ||
uses: actions/checkout@v4 | ||
- name: Singularity install with defaults | ||
uses: ./ | ||
|
||
install-singuarity-custom: | ||
name: Install with custom | ||
install-singularity-v3-custom: | ||
name: Install with custom v3 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Singularity v3 custom install | ||
uses: ./ | ||
with: | ||
singularity-version: '3.11.0' | ||
go-version: '1.18.0' | ||
install-singularity-v4-custom: | ||
name: Install with custom v4 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
- name: Singularity install custom | ||
uses: actions/checkout@v4 | ||
- name: Singularity v4 custom install | ||
uses: ./ | ||
with: | ||
singularity-version: 3.8.4 | ||
go-version: 1.18.0 | ||
singularity-version: '4.0.1' | ||
go-version: '1.20.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters