diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 2f9397e..a79ef75 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -58,4 +58,8 @@ jobs: tag: ${{ github.ref_name }} - name: Run tests in container - run: docker run ghcr.io/${{ github.repository }}:${{ github.ref_name }} /bin/bash -c "coverage run manage.py test apps " \ No newline at end of file + run: | + docker run ghcr.io/${{ github.repository }}:${{ github.ref_name }} /bin/bash -c " + pip install coverage && + coverage run manage.py test apps + " \ No newline at end of file