Skip to content

Commit

Permalink
Fix lint-only action
Browse files Browse the repository at this point in the history
  • Loading branch information
pagrubel committed Apr 19, 2024
1 parent cb95b8a commit 64954fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
docs:
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci') || contains(github.event.pull_request.labels.*.name, 'lint-only')) }}
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci') && !(contains(github.event.pull_request.labels.*.name, 'lint-only')) }}
name: Build Docs
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env: {}

jobs:
integration-test:
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci') || contains(github.event.pull_request.labels.*.name, 'lint-only')) }}
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci') && !(contains(github.event.pull_request.labels.*.name, 'lint-only')) }}
name: BEE Integration Test
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env: {}

jobs:
integration-test:
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci') || contains(github.event.pull_request.labels.*.name, 'lint-only')) }}
if: ${{ !(contains(github.event.pull_request.labels.*.name, 'no ci') && !(contains(github.event.pull_request.labels.*.name, 'lint-only')) }}
name: BEE Unit Tests
env:
# Unit tests are only run with Slurm right now
Expand Down

0 comments on commit 64954fd

Please sign in to comment.