Update dependency io.mockk:mockk to v1.14.9 #1198
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: Verify Documentation | |
| on: | |
| pull_request: | |
| types: [ synchronize, opened, reopened, labeled, unlabeled ] | |
| jobs: | |
| check_docs: | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'release :tada:') }} | |
| name: Check | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| strategy: | |
| matrix: | |
| file: [ 'website/docs/changelog.md','README.md' ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Major | |
| if: ${{ contains(github.event.*.labels.*.name, 'major :1st_place_medal:') }} | |
| run: make verify-doc BUMP=major FILE=${{ matrix.file }} | |
| - name: Minor | |
| if: ${{ contains(github.event.*.labels.*.name, 'minor :2nd_place_medal:') }} | |
| run: make verify-doc BUMP=minor FILE=${{ matrix.file }} | |
| - name: Patch | |
| if: ${{ contains(github.event.*.labels.*.name, 'patch :3rd_place_medal:') }} | |
| run: make verify-doc BUMP=patch FILE=${{ matrix.file }} |