Implement list animation on TimetableTime and timetable items of FavoriteList. #1066
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/ |