Skip to content

acapy 0.8.0 update #343

acapy 0.8.0 update

acapy 0.8.0 update #343

Workflow file for this run

name: CI/CD
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- uses: actions/checkout@v3
with:
# needed for the license header check
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
check-latest: true
cache: 'maven'
- name: Build with Maven
run: mvn clean verify
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: |
**/surefire-reports/*.xml
large_files: true