diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index aaaf0a0..2485d61 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -47,10 +47,13 @@ jobs: REPO_NAME: ${{ github.event.repository.name }} VERSION: ${{ steps.get_version.outputs.version }} run: docker build . --file Dockerfile --tag eurobenchtest/$REPO_NAME:$VERSION + - name: Get the docker image testing material + run: wget -O test_docker_call.py https://raw.githubusercontent.com/eurobench/docker_test/master/test_docker_call.py - name: test the Docker image env: DOCKER_IMAGE: eurobenchtest/${{ github.event.repository.name }}:${{ steps.get_version.outputs.version }} - run: python3 tests/test_docker_call.py + TEST_PLAN: tests/test_plan.xml + run: python3 test_docker_call.py - name: Push to Docker hub env: REPO_NAME: ${{ github.event.repository.name }}