Skip to content

Commit

Permalink
fix: use setup-java for GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnaldo authored and d01c2 committed Feb 6, 2025
1 parent ac35347 commit 8dfa6af
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/post-submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,27 @@ jobs:
test262test:
runs-on: ubuntu-latest
steps:

- name: Checkout code
uses: actions/checkout@v4
with:
submodules: true

- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: sbt

- name: Setup SBT
uses: sbt/setup-sbt@v1

- name: Run test
env:
ESMETA_HOME: ${{ github.workspace }}
run: sbt test262EvalTest

- name: Report Status
if: failure()
uses: 8398a7/action-slack@v3
Expand Down

0 comments on commit 8dfa6af

Please sign in to comment.