From aee829f3101feaef575a9becaf8ca2a2c638f2e4 Mon Sep 17 00:00:00 2001 From: geirawsm Date: Wed, 11 Oct 2023 07:59:44 +0200 Subject: [PATCH] Testing wiitout pipenv --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd9d176..6cf2178 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install --upgrade flake8 pipenv + python -m pip install --upgrade flake8 - name: Lint with flake8 run: | @@ -35,8 +35,8 @@ jobs: - name: Test with pytest working-directory: ../. run: | - pipenv install --dev - pipenv run python -m pytest + python -m pip install pytest + python -m pytest - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -52,4 +52,4 @@ jobs: with: context: . push: true - tags: ${{secrets.DOCKER_USER}}/sausage_bot:latest + tags: ${{secrets.DOCKER_USER}}/sausage_bot:${{ github.run_number }}