feat: Enable paging for search endpoints #111
Workflow file for this run
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: | |
- 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" |