Query Realtime data (#4) #26
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: 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 }} |