This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
[Auto] The langchain4j GitHub organization is added (#211) #224
This file contains 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: ci | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- "*" | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: { } | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
GRADLE_SWITCHES: --console=plain --info --warning-mode=all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: build | |
timeout-minutes: 20 | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: ${{ env.GRADLE_SWITCHES }} build | |
- name: Upload build reports | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-reports | |
path: build/reports/ | |
- name: Validate repos.csv | |
run: ./validate-repos.csv.sh |