Skip to content

build(deps): Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.6 to 3.2.7 #928

build(deps): Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.6 to 3.2.7

build(deps): Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.6 to 3.2.7 #928

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: graalvm/setup-graalvm@v1
with:
distribution: 'graalvm'
java-version: '17'
components: 'native-image,js'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
- name: Clean and install
run: ./mvnw --no-transfer-progress clean install
- name: Run native tests
run: ./mvnw --no-transfer-progress -Dnative -pl :neo4j-ogm-quarkus-integration-tests verify