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 d31cdd6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test-java-os-mix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ jobs:
distribution: temurin
java-version: ${{ matrix.java-version }}

- name: List files (Unix)
if: runner.os != 'Windows'
run: find * -ls

- name: List files (Windows)
if: runner.os == 'Windows'
run: dir /s /b

- name: Execute integration test
run: |
uname -a
Expand Down

0 comments on commit d31cdd6

Please sign in to comment.