chore(deps): update prom/prometheus docker tag to v2.49.1 #86
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: boot-graphql-webmvc | |
on: | |
push: | |
paths: | |
- "graphql/boot-graphql-webmvc/**" | |
branches: [main] | |
pull_request: | |
paths: | |
- "graphql/boot-graphql-webmvc/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
name: Run Unit & Integration Tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "graphql/boot-graphql-webmvc" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK 21 | |
uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: "temurin" | |
cache: "maven" | |
- name: Grant execute permission for mvnw | |
run: chmod +x mvnw | |
- name: Build and analyze | |
run: ./mvnw clean verify |