Skip to content

drop text index

drop text index #21

Workflow file for this run

# This file was generated using Kotlin DSL (.github/workflows/pr_master.main.kts).
# If you want to modify the workflow, please change the Kotlin file and regenerate this YAML file.
# Generated with https://github.com/typesafegithub/github-workflows-kt
name: 'Process Pull Request'
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
check_yaml_consistency:
name: 'Check YAML consistency'
runs-on: 'ubuntu-latest'
steps:
- id: 'step-0'
name: 'Check out'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Execute script'
run: 'rm ''.github/workflows/pr_master.yaml'' && ''.github/workflows/pr_master.main.kts'''
- id: 'step-2'
name: 'Consistency check'
run: 'git diff --exit-code ''.github/workflows/pr_master.yaml'''
build-and-test:
name: 'Build And Test'
runs-on: 'ubuntu-latest'
needs:
- 'check_yaml_consistency'
timeout-minutes: 30
steps:
- id: 'step-0'
name: 'checkout'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'setup jdk'
uses: 'actions/setup-java@v4'
with:
java-version: '21'
distribution: 'corretto'
java-package: 'jdk'
cache: 'gradle'
- id: 'step-2'
name: 'build with gradle'
uses: 'gradle/gradle-build-action@v2'
with:
arguments: 'check'