Skip to content

Commit

Permalink
run tests with java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Feb 5, 2025
1 parent 01178fc commit 64a6fe7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,50 +9,45 @@ jobs:
matrix:
os: [ ubuntu-22.04, macos-13, macos-14, windows-2019 ]
runs-on: ${{ matrix.os }}
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '8'
java-version: '17'
distribution: 'adopt'

- name: Compile all
run: mvn install -"DskipTests" -"Dgpg.skip"

- name: Run Address tests
timeout-minutes: 10
run: |
cd address
mvn test
- name: Run Cell tests
timeout-minutes: 10
run: |
cd cell
mvn test
- name: Run tonlib tests
timeout-minutes: 10
run: |
cd tonlib
mvn test -Dtest=TestTonlibJson#testTonlibGetAllBlockTransactions
- name: Run Utils tests
timeout-minutes: 10
run: |
cd utils
mvn test
- name: Run Disassembler tests
timeout-minutes: 10
run: |
cd disassembler
mvn test
- name: Run BitString tests
timeout-minutes: 10
run: |
cd bitstring
mvn test
Binary file removed tonlib/tonlibjson.dll
Binary file not shown.

0 comments on commit 64a6fe7

Please sign in to comment.