Skip to content

Commit

Permalink
Try to find files in current directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Mar 29, 2024
1 parent 8dd588c commit a3b2ae4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/test-java-os-mix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,22 @@ jobs:
distribution: temurin
java-version: ${{ matrix.java-version }}

- name: Execute integration test
- name: Execute integration test (Unix)
if: runner.os != 'Windows'
run: |
uname -a
find * -ls
./gradlew --version
./gradlew info
./gradlew integrationTestOnly --scan
- name: Execute integration test (Windows)
if: runner.os == 'Windows'
shell: cmd
run: |
uname -a
dir /s /b
gradlew.bat --version
gradlew.bat info
gradlew.bat integrationTestOnly --scan

0 comments on commit a3b2ae4

Please sign in to comment.