From e573f8f39c6b11470dcae3ac94ad798e4655ee91 Mon Sep 17 00:00:00 2001 From: Dima Tisnek Date: Thu, 28 Nov 2024 15:17:06 +0900 Subject: [PATCH] chore: fix skipping disabled observability charms (#1475) Took 5 attempts, but I got the syntax right after all. --- .github/workflows/observability-charm-tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/observability-charm-tests.yaml b/.github/workflows/observability-charm-tests.yaml index b8c8481f3..860f88dcc 100644 --- a/.github/workflows/observability-charm-tests.yaml +++ b/.github/workflows/observability-charm-tests.yaml @@ -38,9 +38,9 @@ jobs: run: pip install tox~=4.2 - name: Run the charm's unit tests - if: !matrix.disabled + if: ${{ !(matrix.disabled) }} run: tox -vve unit - name: Run the charm's static analysis checks - if: !matrix.disabled + if: ${{ !(matrix.disabled) }} run: tox -vve static-charm