Skip to content

created sumties TRUE and FALSE #27

created sumties TRUE and FALSE

created sumties TRUE and FALSE #27

Workflow file for this run

name: Build
on:
pull_request:
branches: "**"
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B install -Dgpg.skip --file pom.xml
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6