Skip to content
This repository was archived by the owner on Jul 11, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/build-animations-interpolator-playground.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Workflow name
name: Build AnimationsInterpolatorPlayground

on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set Up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Make gradlew executable
run: chmod +x ./gradlew
working-directory: ./AnimationsInterpolatorPlayground

- name: Build AnimationsInterpolatorPlayground app
working-directory: ./AnimationsInterpolatorPlayground
run: ./gradlew app:assembleDebug
33 changes: 33 additions & 0 deletions .github/workflows/build-cardview-kotlin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Workflow name
name: Build CardViewKotlin

on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set Up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Make gradlew executable
run: chmod +x ./gradlew
working-directory: ./CardViewKotlin

- name: Build CardViewKotlin app
working-directory: ./CardViewKotlin
run: ./gradlew Application:assembleDebug
33 changes: 33 additions & 0 deletions .github/workflows/build-cardview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Workflow name
name: Build CardView

on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set Up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Make gradlew executable
run: chmod +x ./gradlew
working-directory: ./CardView

- name: Build CardView app
working-directory: ./CardView
run: ./gradlew Application:assembleDebug
Binary file modified CardViewKotlin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion CardViewKotlin/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
117 changes: 69 additions & 48 deletions CardViewKotlin/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading