Skip to content

Commit

Permalink
ls
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame committed Sep 28, 2023
1 parent cfd5ba9 commit db4a963
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,18 @@ jobs:
- name: Checkout ${{ github.ref }} ( ${{ github.sha }} )
uses: actions/checkout@v3

- name: ls -la
run: ls -la

- name: Caching dependencies
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-${{ matrix.java }}-${{ hashFiles('src/**/*.scala', 'build.sbt') }}
restore-keys: ${{ runner.os }}-${{ matrix.java }}-

- name: ls -la
run: ls -la


- name: Set up JDK ${{ matrix.java }}
Expand All @@ -37,4 +43,6 @@ jobs:
distribution: 'zulu'

- name: compile
run: sbt compile
run: |
ls -la
sbt compile

0 comments on commit db4a963

Please sign in to comment.