Skip to content

chore(deps): bump com.google.code.gson:gson from 2.10.1 to 2.11.0 #41

chore(deps): bump com.google.code.gson:gson from 2.10.1 to 2.11.0

chore(deps): bump com.google.code.gson:gson from 2.10.1 to 2.11.0 #41

Workflow file for this run

name: Maven CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [11, 17]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: maven
- run: mvn clean
- run: mvn compile
- run: mvn test
- run: mvn package