Skip to content

merge SDK v2 bump into development #104

merge SDK v2 bump into development

merge SDK v2 bump into development #104

Workflow file for this run

name: test
on:
push:
branches:
- master
tags:
- "*-[0-9]+.*"
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Start MinIO Server
uses: comfuture/minio-action@v1
with:
access_key: minioadmin
secret_key: minioadmin
- name: Set up Java
uses: actions/setup-java@v5
with:
java-version: '8'
distribution: 'zulu'
cache: 'maven'
- name: Maven Test
run: mvn -B clean test --file pom.xml
env:
AWS_REGION: us-east-1