This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
[EN-20691] Update our SDK fork with the latest upstream changes #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test and lint SDK | |
on: | |
pull_request: | |
paths: | |
- '**/*' | |
jobs: | |
lint-test-sdk: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: ['11'] # Define the Java versions to test against | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'adopt' | |
- name: Run tests | |
run: make test |