Skip to content

Bump com.github.ajalt.mordant:mordant-jvm from 2.1.0 to 2.3.0 #48

Bump com.github.ajalt.mordant:mordant-jvm from 2.1.0 to 2.3.0

Bump com.github.ajalt.mordant:mordant-jvm from 2.1.0 to 2.3.0 #48

Workflow file for this run

name: 🏗 build sift pull request
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: setup jdk
uses: graalvm/setup-graalvm@v1
with:
version: 'latest'
java-version: '17.0.7'
distribution: 'graalvm-community'
github-token: ${{ secrets.GITHUB_TOKEN }}
cache: 'maven'
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build
run: mvn -B verify