This repository was archived by the owner on Jul 23, 2025. It is now read-only.
Merge pull request #335 from Sanapol/hide-yandex #691
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: Typo Reporter CI | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| push: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| if: "!contains(github.event.head_commit.message, '[CI SKIP]')" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v2 | |
| with: | |
| distribution: zulu | |
| java-version: 21 | |
| - name: Run unit tests | |
| run: make test-unit-only | |
| - name: Run integration tests | |
| run: make test-integration-only | |
| - name: Run linter check | |
| run: make lint |