Skip to content

FMWK-218 Upgrade to aerospike-java-client version 7.0.0 (#18) #79

FMWK-218 Upgrade to aerospike-java-client version 7.0.0 (#18)

FMWK-218 Upgrade to aerospike-java-client version 7.0.0 (#18) #79

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout repo using https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set up Aerospike Database
uses: reugn/github-action-aerospike@v1
# See: https://github.com/actions/cache/blob/master/examples.md#java---maven
- name: Maven cache and restore deps
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn clean test -B -U