Skip to content

Commit

Permalink
Check action
Browse files Browse the repository at this point in the history
(cherry picked from commit 99e8d1d)
  • Loading branch information
Nikolay Kochetkov committed Oct 28, 2024
1 parent e697ad3 commit ce0d685
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Check

on:
pull_request:
types: [assigned, opened, synchronize, reopened]

jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.m2
~/.android/build-cache
key: ${GITHUB_REF##*/}
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Check with gradle
run: ./gradlew build

0 comments on commit ce0d685

Please sign in to comment.