This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
Bump ch.qos.logback:logback-classic from 1.2.3 to 1.3.12 #22
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: pass-messaging-support Continuous Integration | |
on: [ pull_request, workflow_dispatch ] | |
concurrency: | |
group: ci-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
print-workflow-description: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "This is a CI build of branch ${{ github.ref }} in repository ${{ github.repository }}" | |
- run: echo "This job was triggered by a ${{ github.event_name }} event and is running on a ${{ runner.os }} server" | |
run-tests: | |
name: "Run Unit & Integration Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout the repository" | |
uses: actions/checkout@v2 | |
- name: "Set up JDK 11" | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: "Cache Maven packages" | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: "Run unit & integration tests" | |
run: mvn -U -V -ntp verify --file pom.xml |