library: Use PaddingValues instead of DpSize; Allow setting Scaffold's popupHost to null (using Scaffold and MiuixPopupHost separately) #160
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: ':miuix:iosSimulatorArm64Test' | |
| os: macos-latest | |
| - target: ':miuix:desktopTest' | |
| os: ubuntu-latest | |
| - target: ':miuix:assembleAndroidTest' | |
| os: ubuntu-latest | |
| - target: ':miuix:testDebugUnitTest' | |
| os: ubuntu-latest | |
| - target: ':miuix: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 }} |