Bump dev.langchain4j:langchain4j-embeddings-bge-small-en-q from 0.35.0 to 0.36.0 #13
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: Build | |
env: | |
JVM_VERSION: '21' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}" | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
app: | |
- step-01 | |
- step-02 | |
- step-03 | |
- step-04 | |
- step-05 | |
- step-06 | |
- step-07 | |
- step-08 | |
name: "Build ${{ matrix.app }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ env.JVM_VERSION }} | |
distribution: temurin | |
cache: maven | |
- name: Maven Build for ${{ matrix.app }} | |
working-directory: ${{ matrix.app }} | |
run: ./mvnw -B clean verify -Dquarkus.http.host=0.0.0.0 -DskipITs=false | |
docs: | |
runs-on: ubuntu-latest | |
name: "Build Docs" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- uses: actions/setup-java@v4 | |
name: Set up Java 21 | |
with: | |
java-version: ${{ env.JVM_VERSION }} | |
distribution: temurin | |
cache: maven | |
- name: Generate documentation | |
working-directory: docs | |
run: | | |
pip install pipenv | |
pipenv install | |
pipenv run mkdocs build --clean | |
- name: Publish documentation | |
uses: peaceiris/actions-gh-pages@v4 | |
if: github.ref == 'refs/heads/main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/site |