Skip to content

Commit

Permalink
fix lowest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
k0ka committed Jan 5, 2024
1 parent 0a71d83 commit d426ba6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ on:

jobs:
tests:
if: !contains(github.event.pull_request.body, 'skip ci') && !contains(github.event.pull_request.body, 'skip integration')
if: |
!contains(github.event.pull_request.body, 'skip ci')
&& !contains(github.event.pull_request.body, 'skip integration')
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ on:
jobs:
tests:
runs-on: ubuntu-22.04
if: !contains(github.event.pull_request.body, 'skip ci') && !contains(github.event.pull_request.body, 'skip unit') it')"
if: |
!contains(github.event.pull_request.body, 'skip ci')
&& !contains(github.event.pull_request.body, 'skip unit')
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit d426ba6

Please sign in to comment.