Skip to content

Some ports from the python version #91

Some ports from the python version

Some ports from the python version #91

Workflow file for this run

name: Android CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleDebug
- name: Copy files
run: |
cp TeamCode/build/outputs/apk/debug/TeamCode-debug.apk build-debug.apk
- name: Export artifact
uses: actions/upload-artifact@v3
with:
name: build-debug.apk
path: build-debug.apk