Skip to content

Commit

Permalink
Update cicd_docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alavenant authored Jul 10, 2024
1 parent 5c3f55d commit d40f943
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
if: ${{ github.event_name != 'pull_request' }}
#if: ${{ github.event_name != 'pull_request' }}
uses: docker/build-push-action@v5
with:
context: .
Expand All @@ -63,9 +63,9 @@ jobs:
# pull and test
- name : Pull Docker image
id: pull-image
if: github.event_name != 'pull_request'
#if: github.event_name != 'pull_request'
run: docker pull ${{ steps.meta.outputs.tags }}
- name : Test Docker image
id: test-image
if: github.event_name != 'pull_request'
#if: github.event_name != 'pull_request'
run: docker run ${{ steps.meta.outputs.tags }} python -m pytest

0 comments on commit d40f943

Please sign in to comment.