Skip to content

Update the Cassandra Driver, Messagging Connectors and DSBulk in orde… #8

Update the Cassandra Driver, Messagging Connectors and DSBulk in orde…

Update the Cassandra Driver, Messagging Connectors and DSBulk in orde… #8

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- 1.x
push:
branches:
- 1.x
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java:
- '11'
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: License check
run: mvn -B license:check
- name: Build and test with JDK ${{ matrix.java }}
run: mvn -B clean verify