style(doses_tests): remove unused import #60
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Commit Check | ||
|
Check failure on line 1 in .github/workflows/commit-check.yml
|
||
| on: | ||
| push: | ||
| pull_request: | ||
| branches: 'main' | ||
| jobs: | ||
| commit-check: | ||
| runs-on: ubuntu-latest | ||
| permissions: # use permissions because use of pr-comments | ||
| contents: read | ||
| pull-requests: write | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| with: | ||
| fetch-depth: 0 # Required for merge-base checks | ||
| - uses: commit-check/commit-check-action@v2 | ||
| with: | ||
| message: true | ||
| branch: true | ||
| author-name: false | ||
| author-email: false | ||
| job-summary: true | ||
| pr-comments: ${{ github.event_name == 'pull_request' }} | ||