Skip to content

chore: Add documentation for the query string #102

chore: Add documentation for the query string

chore: Add documentation for the query string #102

Workflow file for this run

name: CI
on:
push:
branches:
- development
pull_request:
branches:
- development
jobs:
ci-matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 17 ]
steps:
- uses: actions/[email protected]
with:
fetch-depth: 100
- uses: olafurpg/setup-scala@v14
with:
java-version: ${{ matrix.java }}
# - name: Coursier cache
# uses: coursier/cache-action@v6
- name: sbt ci ${{ github.ref }}
run: sbt -mem 2048 ci
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.RENKU_DOCKER_USERNAME }}
password: ${{ secrets.RENKU_DOCKER_PASSWORD }}
- name: sbt docker:publishLocal
run: sbt -mem 2048 search-provision/Docker/publishLocal search-api/Docker/publishLocal
ci:
runs-on: ubuntu-latest
needs: [ci-matrix]
steps:
- name: Aggregate of lint, and all tests
run: echo "ci passed"