Skip to content

Commit

Permalink
Added working-directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Szombatioi committed May 18, 2024
1 parent 557b79c commit 6c2ff4f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/gradle_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Java Gradle Tests

on:
push:
branches:
Expand All @@ -19,9 +20,12 @@ jobs:
with:
java-version: '17'
distribution: 'temurin'

- name: Build with Gradle
run: ./test/gradlew build
working-directory: ./test
run: ./gradlew build

- name: Run Tests
run: ./test/gradlew test
working-directory: ./test
run: ./gradlew test

0 comments on commit 6c2ff4f

Please sign in to comment.