Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
espenhgn committed Sep 22, 2024
1 parent d0e9579 commit fa2ee5b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/container_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ jobs:
- name: Run unit tests
run: |
docker run --rm ${{ env.TEST_TAG }} python --version
docker run --rm -v ${{ github.workspace }}:/home ${{ env.TEST_TAG }} py.test -v tests
echo ${{ github.workspace }}
ls -la ${{ github.workspace }}
echo $GITHUB_WORKSPACE
ls -la $GITHUB_WORKSPACE
docker run --rm -v $GITHUB_WORKSPACE:/home ${{ env.TEST_TAG }} py.test -v tests
- name: Build
uses: docker/build-push-action@v6
Expand Down

0 comments on commit fa2ee5b

Please sign in to comment.