Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# separate terms of service, privacy policy, and supports
# documentation.

name: Java CI with Maven

on:
workflow_dispatch:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]

jobs:
build:
Expand All @@ -26,13 +26,13 @@ jobs:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
java-version: "21"
distribution: "temurin"
cache: maven

- name: Prepare Hedera Solo
id: solo
uses: OpenElements/hedera-solo-action@v0.3
uses: OpenElements/hedera-solo-action@fixsolo
with:
installMirrorNode: true

Expand All @@ -43,4 +43,3 @@ jobs:
HEDERA_PRIVATE_KEY: ${{ steps.solo.outputs.privateKey }}
HEDERA_NETWORK: solo
run: ./mvnw verify

Loading