Skip to content

Commit

Permalink
Fix if clause for cpp-linters.
Browse files Browse the repository at this point in the history
  • Loading branch information
rturrado committed Oct 17, 2024
1 parent ffbc350 commit e018cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
# Do not run when merging to master or pulling request to master
# (until we have a fix for this cpp-linter-action issue: https://github.com/cpp-linter/cpp-linter-action/issues/274)
if: github.ref != 'refs/heads/master' && github.base_ref != 'refs/heads/master'
if: github.ref != 'refs/heads/master' && github.base_ref != 'master'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit e018cb1

Please sign in to comment.