add support for iOS isInspectable property vis webSettings #237
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 Multiplatform project | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - feature/ci_setup | |
| pull_request: | |
| jobs: | |
| build-multiplatform-project: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-22.04, macos-14, windows-2022 ] | |
| gradle: [ 8.3 ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'corretto' | |
| java-version: '17' | |
| - name: Build Multiplatform project | |
| shell: bash | |
| run: ./gradlew assemble |