Skip to content

Teeny json suport

Teeny json suport #32

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '21'
cache: 'maven'
- name: Build
run: mvn --batch-mode -DskipTests package
- name: Test
run: mvn --batch-mode -Dmaven.test.failure.ignore=true test
- name: Report
uses: dorny/test-reporter@v1
if: always()
with:
name: Maven Tests
path: target/surefire-reports/*.xml
reporter: java-junit
fail-on-error: true
- name: Upload to Azure Blob Storage
uses: bacongobbler/[email protected]
with:
source_dir: 'target/apidocs'
container_name: '$web'
connection_string: ${{ secrets.AZURE_BLOB_STORAGE_CONNECTION_STRING }}
sync: 'true'