Bump com.google.cloud:google-cloud-storage from 2.45.0 to 2.46.0 #3597
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: pull_request | |
env: | |
# Quarkus version we use has problems with mvn > 3.8.4 | |
MAVEN_VERSION: 3.8.4 | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: ${{ env.MAVEN_VERSION }} | |
- name: Compile | |
run: mvn --no-transfer-progress clean package | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: ${{ env.MAVEN_VERSION }} | |
- name: Run tests | |
run: mvn --no-transfer-progress clean test -Ptest | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: files | |
path: ./**/*.log |