From bd8ae3ae505cec2fbe04f228ddae20ec07c0f686 Mon Sep 17 00:00:00 2001 From: Md Nazmul Hossain Date: Wed, 10 Dec 2025 02:39:14 -0500 Subject: [PATCH] Automated conversion of Travis CI configuration to a GitHub Actions workflow --- .github/workflows/actions.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/actions.yml diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml new file mode 100644 index 0000000..99c618f --- /dev/null +++ b/.github/workflows/actions.yml @@ -0,0 +1,31 @@ +name: CI + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up JDK 8 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '8' + cache: 'gradle' + + - name: Setup Android SDK + uses: android-actions/setup-android@v3 + + - name: Install Android SDK components + run: sdkmanager "build-tools;30.0.3" "platforms;android-30" "platform-tools" + + - name: Accept Android SDK licenses + run: yes | sdkmanager --licenses || true + + - name: Make gradlew executable + run: chmod +x gradlew + + - name: Build with Gradle + run: ./gradlew build \ No newline at end of file