From d426ba63dfc06afee780f0ee3bc5a50487399c62 Mon Sep 17 00:00:00 2001 From: Konstantin Babushkin Date: Fri, 5 Jan 2024 11:54:33 +0100 Subject: [PATCH] fix lowest dependencies --- .github/workflows/integration_tests.yml | 4 +++- .github/workflows/unit_tests.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index a62bca39..f1646ca8 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -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: diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 33000dcd..a1930440 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -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: