Skip to content

Commit

Permalink
Merge pull request #50 from gardenlinux/actions-check-failure
Browse files Browse the repository at this point in the history
Only check for success and failure in actions
  • Loading branch information
waldiTM authored Dec 18, 2023
2 parents e6e9cd5 + 7554109 commit d74fe40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
load: true

- name: Run flake8
if: ${{ always() }}
if: success() || failure()
run: >
docker run
--network host
Expand All @@ -51,7 +51,7 @@ jobs:
/bin/sh -c 'apt-get install -y flake8 && flake8'
- name: Run py.test
if: ${{ always() }}
if: success() || failure()
run: >
docker run
--network host
Expand All @@ -64,7 +64,7 @@ jobs:
/bin/sh -c 'apt-get install -y python3-pytest python3-pytest-asyncio python3-requests-mock && py.test'
- name: Run mypy
if: ${{ always() }}
if: success() || failure()
run: >
docker run
--network host
Expand Down

0 comments on commit d74fe40

Please sign in to comment.