Redesign the properties of auto block feature to make it easier to co… #551
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 turms-client-kotlin | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
java: [ '8', '17' ] | |
name: Test in Java ${{ matrix.Java }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up Java | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Verify formatting | |
run: mvn validate --projects turms-client-kotlin --activate-profiles lint --batch-mode --no-transfer-progress | |
- name: Run tests | |
run: mvn verify --projects turms-client-kotlin |