🔧 By upgrading the version of Compose Multiplatform itself and the accompanying dependencies, we have addressed the issue of fling scrolling not working on iOS in Compose Multiplatform. #1249
Workflow file for this run
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: detekt | |
on: | |
pull_request: | |
paths-ignore: | |
- 'app-ios/**' | |
jobs: | |
detekt: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-java | |
- name: Run detekt | |
id: detekt | |
run: ./gradlew detekt --stacktrace | |
- name: Save PR event | |
if: failure() | |
run: | | |
mkdir -p ./pr | |
echo '${{ toJson(github.event) }}' > ./pr/event.json | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: pr | |
path: pr/ |