Improve horizontal spacing between icons #223
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Project | |
on: | |
# Automatically run the workflow after a "git push" | |
push: | |
branches: [ main ] | |
# Allows to run the workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# Build the project with Gradle | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v2 | |
- name: Build with Gradle | |
run: | | |
chmod +x gradlew | |
./gradlew build |