Skip to content

Added table index and fixed few minor bugs #41

Added table index and fixed few minor bugs

Added table index and fixed few minor bugs #41

Workflow file for this run

name: Build & Certify
on:
push:
branches:
main
workflow_dispatch:
concurrency:
group: "workflow = ${{ github.workflow }}, ref = ${{ github.event.ref }}, pr = ${{ github.event.pull_request.id }}"
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
build:
runs-on: ubuntu-latest
env:
CONTENTFUL_CDA_TOKEN: ${{ secrets.CONTENTFUL_CDA_TOKEN }}
CONTENTFUL_CMA_TOKEN: ${{ secrets.CONTENTFUL_CMA_TOKEN }}
CONTENTFUL_CPA_TOKEN: ${{ secrets.CONTENTFUL_CPA_TOKEN }}
GRAVATAR_API_KEY: ${{ secrets.GRAVATAR_API_KEY }}
strategy:
fail-fast: true
name: Build & Certify
steps:
- name: Repository checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: GraalVM set up
uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'graalvm-community'
cache: 'maven'
native-image-job-reports: 'true'
native-image-pr-reports: 'true'
- name: Certify
run: mvn -B clean verify
- name: Certify native
run: |
mvn -B clean verify -Pnative \
-Dquarkus.http.host=0.0.0.0 \
-Dquarkus.native.container-build=true \
-Dquarkus.test.arg-line="--add-host host.docker.internal:host-gateway"