Skip to content

Query Realtime data (#4) #26

Query Realtime data (#4)

Query Realtime data (#4) #26

Workflow file for this run

name: Java CI with Maven
permissions:
contents: read
pull-requests: write
on:
push:
branches:
- main
- 'releases/**'
- 'feature/**'
pull_request:
branches: [ main ]
jobs:
build:
name: Maven java compile
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B verify --file pom.xml
- name: CI Badges
uses: gaelgirodon/ci-badges-action@v1
with:
gist-id: 4b8ce8c93b2a3a92b777d51914cb1e6b
token: ${{ secrets.GIST_TOKEN }}