Skip to content

Commit

Permalink
style: pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] authored and mdtanker committed May 7, 2024
1 parent 7306b35 commit 116a612
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ jobs:
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
# don't run tests if any commits in push contain "docs:" or "style:"
if: ${{ !contains(github.push.commits.message, 'docs:') && !contains(github.push.commits.message, 'style:') }}
if:
${{ !contains(github.push.commits.message, 'docs:') &&
!contains(github.push.commits.message, 'style:') }}
needs: [pre-commit]
strategy:
# Otherwise, the workflow would stop if a single job fails. We want to
Expand Down

0 comments on commit 116a612

Please sign in to comment.