Skip to content

Commit 4c4407d

Browse files
committed
update git action to include docker test for igblast
1 parent 6168c27 commit 4c4407d

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/.DS_Store

6 KB
Binary file not shown.

.github/workflows/main.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,20 @@ jobs:
1212
- name: Checkout repository
1313
uses: actions/checkout@v4
1414

15-
- name: Log in to GHCR
16-
uses: docker/login-action@v3
17-
with:
18-
registry: ghcr.io
19-
username: ${{ github.actor }}
20-
password: ${{ secrets.GITHUB_TOKEN }}
21-
22-
- name: Pull container from GHCR
15+
- name: Pull container presto-0.7.4:latest from GHCR
2316
run: |
2417
docker pull ghcr.io/lewisl23/presto-0.7.4:latest
2518
26-
- name: Test container runs
19+
- name: Test container presto-0.7.4:latest runs
2720
run: |
2821
docker run --rm ghcr.io/lewisl23/presto-0.7.4:latest AssemblePairs.py --help
2922
echo "Container works"
3023
24+
- name: Pull container igblast-1.21.0:latest from GHCR
25+
run: |
26+
docker pull ghcr.io/lewisl23/igblast-1.21.0:latest
27+
28+
- name: Test container igblast-1.21.0:latest runs
29+
run: |
30+
docker run --rm ghcr.io/lewisl23/igblast-1.21.0:latest igblast --help
31+
echo "Container works"

0 commit comments

Comments
 (0)