Bump com.azure:azure-storage-queue from 12.23.0 to 12.24.0 #3457
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/setup-maven@v4.3 | |
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/setup-maven@v4.3 | |
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 |