Skip to content

Bump com.google.code.gson:gson from 2.10.1 to 2.11.0 #165

Bump com.google.code.gson:gson from 2.10.1 to 2.11.0

Bump com.google.code.gson:gson from 2.10.1 to 2.11.0 #165

Workflow file for this run

# Builds and tests SDFEater on every push (excluding master branch) and pull request
name: Build & test
on:
push:
branches-ignore:
- master
pull_request:
jobs:
test:
name: Build & test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java-version: [8, 11, 16]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java-version }}
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build and test with Maven
run: mvn -B package --file pom.xml