Skip to content

Commit

Permalink
chore: fix skipping disabled observability charms (canonical#1475)
Browse files Browse the repository at this point in the history
Took 5 attempts, but I got the syntax right after all.
  • Loading branch information
dimaqq authored Nov 28, 2024
1 parent 1ce35c4 commit e573f8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/observability-charm-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e573f8f

Please sign in to comment.