Skip to content

fix authors

fix authors #31

Workflow file for this run

name: Gradle CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
- name: Set up Rust
run: |
rustup toolchain install stable --profile minimal
rustup default stable
- name: Grant execute permission for install_compiler_x86_64.sh
run: chmod +x ./setup/install_compiler_x86_64.sh
- name: Set up BuildTools
run: sudo ./setup/install_compiler_x86_64.sh
- name: Grant execute permission for install_android_compiler_x86_64.sh
run: chmod +x ./setup/install_android_compiler_x86_64.sh
- name: Set up AndroidNDK BuildTools
run: ./setup/install_android_compiler_x86_64.sh
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew test --info