Skip to content

Commit e1afb48

Browse files
authored
preparing to remove circle (#624)
* preparing to remove circle Signed-off-by: vsoch <[email protected]>
1 parent 5d35fe6 commit e1afb48

File tree

9 files changed

+36
-136
lines changed

9 files changed

+36
-136
lines changed

.circleci/config.yml

Lines changed: 0 additions & 129 deletions
This file was deleted.

.github/workflows/alert-action-updates.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check Actions Once a Year
1+
name: shpc check actions
22
on:
33
schedule:
44
- cron: "0 0 1 6 *"

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Update Docs
1+
name: shpc docs
22

33
on:
44
push:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: singularity-hpc
1+
name: shpc linting
22

33
on:
44
# This should run on a push to any branch except main, gh-pages, and binoc

.github/workflows/test-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test Registry Module
1+
name: shpc test container
22

33
on:
44
pull_request:

.github/workflows/test-core.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: shpc test core
2+
3+
on:
4+
pull_request: []
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Singularity install with defaults
11+
uses: singularityhub/install-singularity@main
12+
13+
- name: Create conda environment
14+
run: conda create --quiet -c conda-forge --name shpc spython
15+
16+
- uses: actions/checkout@v3
17+
- name: Install shpc
18+
run: |
19+
export PATH="/usr/share/miniconda/bin:$PATH"
20+
source activate shpc
21+
pip install -e .[all]
22+
23+
- name: Run python module tests (bash)
24+
shell: bash
25+
run: |
26+
export PATH="/usr/share/miniconda/bin:$PATH"
27+
source activate shpc
28+
which shpc
29+
cd shpc/tests
30+
pytest -sxv test_*.py

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test Modules
1+
name: shpc test modules
22

33
on:
44
pull_request: []

.github/workflows/update-contributors.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: allcontributors-auto-detect
1+
name: shpc contributors
22

33
on:
44
push:

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ There are other tools that you might be interested in!
7272
- [Community Collections](https://github.com/community-collections/community-collections)
7373
- [Spack](https://spack.readthedocs.io/en/latest/module_file_support.html) installs modules for software built from source (not containers).
7474

75-
7675
## License
7776

7877
This code is licensed under the MPL 2.0 [LICENSE](LICENSE).

0 commit comments

Comments
 (0)