This repository was archived by the owner on Jul 23, 2025. It is now read-only.
Hide-yandex-link #690
Workflow file for this run
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 |