Skip to content

Commit

Permalink
Reordered build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
arminzavada committed Sep 25, 2024
1 parent bac3ea3 commit 6bce331
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,20 @@ jobs:
- macos-13
runs-on: ${{ matrix.os }}
steps:
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
- name: Setup Docker on MacOS
uses: douglascamata/setup-docker-macos-action@v1-alpha
if: ${{ matrix.os == 'macos-13' }}
- name: Test Docker
run: docker run hello-world
if: ${{ matrix.os == 'macos-13' }}
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Checkout code
uses: actions/checkout@v4
- name: Gradle build
run: ./gradlew build
- name: Upload Artifacts
Expand Down

0 comments on commit 6bce331

Please sign in to comment.