Skip to content

Commit

Permalink
feat: use temp image
Browse files Browse the repository at this point in the history
  • Loading branch information
cpaniaguam committed Jan 19, 2024
1 parent 20009db commit 6226e95
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/run-tests-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ on:
branches:
- main

env:
IMAGE_NAME: cpaniaguam/icesat2waves:test

jobs:
test:
runs-on: ubuntu-latest

container:
image: docker://brownccv/icesat2waves:main
image: ${{ env.IMAGE_NAME }}

steps:
- name: Checkout code
Expand All @@ -20,5 +23,5 @@ jobs:
run: |
docker run --volume="${{ github.workspace }}:/app" \
--workdir="/app" \
docker://brownccv/icesat2waves:main \
pytest tests
${{ env.IMAGE_NAME }} \
python src/icesat2_tracks/analysis_db/B01_SL_load_single_file.py 20190502052058_05180312_005_01 SH_testSLsinglefile2 True

0 comments on commit 6226e95

Please sign in to comment.