Skip to content

1.5.0 more granular iOS exceptions (#6) #80

1.5.0 more granular iOS exceptions (#6)

1.5.0 more granular iOS exceptions (#6) #80

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Build jar
run: ./gradlew test assemble
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: All Tests
path: attestation-service/build/test-results/**/TEST*.xml
reporter: java-junit
- name: Upload jar
uses: actions/upload-artifact@v3
with:
name: attestation-service
path: |
build/libs/*jar