Skip to content

Updated to the latest (compatible) dependencies #90

Updated to the latest (compatible) dependencies

Updated to the latest (compatible) dependencies #90

Workflow file for this run

name: Build
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
java: [11,17-ea]
steps:
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: Checkout formula1-telemetry library
uses: actions/checkout@v2
with:
repository: ppatierno/formula1-telemetry
path: formula1-telemetry
- name: Build formula1-telemetry library with Maven
working-directory: formula1-telemetry
run: mvn -B install
- name: Checkout formula1-telemetry-kafka project
uses: actions/checkout@v2
- 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: Build formula1-telemetry-kafka project with Maven
run: mvn -B package