library: Use material3-window-size-class to get current window size
#70
This file contains hidden or 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: Build test | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| include: | |
| - target: iosSimulatorArm64Test | |
| os: macos-latest | |
| - target: desktopTest | |
| os: ubuntu-latest | |
| - target: assembleAndroidTest | |
| os: ubuntu-latest | |
| - target: testDebugUnitTest | |
| os: ubuntu-latest | |
| - target: testReleaseUnitTest | |
| os: ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| - name: Build with Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Run the Test | |
| run: ./gradlew ${{ matrix.target }} |