Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

[Snyk] Upgrade com.google.http-client:google-http-client from 1.41.4 to 1.43.3 #40

[Snyk] Upgrade com.google.http-client:google-http-client from 1.41.4 to 1.43.3

[Snyk] Upgrade com.google.http-client:google-http-client from 1.41.4 to 1.43.3 #40

Workflow file for this run

name: Unit testing
on:
pull_request:
push:
branches:
- master
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- java_distribution: "zulu"
java_version: "11"
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: "${{ matrix.java_distribution }}"
java-version: "${{ matrix.java_version }}"
cache: 'maven'
- name: checkstyle
run: |
mvn checkstyle:checkstyle
- name: test compile
run: |
mvn compile
- name: Run unit tests
run: |
mvn test