diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 64585b6..73161d3 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -22,33 +22,8 @@ env: IMAGE_NAME: ${{ github.repository }} jobs: - test: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 - with: - python-version: "3.12" - - - name: Run image - uses: abatilo/actions-poetry@v2 - - - uses: actions/cache@v3 - name: Define a cache for the virtual environment based on the dependencies lock file - with: - path: ./.venv - key: venv-${{ hashFiles('poetry.lock') }} - - - name: Install the project dependencies - run: poetry install - - - name: Run tests - run: poetry run pytest -v - build: runs-on: ubuntu-latest - needs: test permissions: contents: read packages: write