Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Hide-yandex-link

Hide-yandex-link #690

Workflow file for this run

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