Add support for dashed timeline #24
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: Sample Build CI | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
sample-debug-build: | |
runs-on: macos-latest | |
steps: | |
# Code checkout | |
- name: Checkout code | |
id: checkout_code | |
uses: actions/checkout@v4 | |
# Setup Android and Gradle | |
- name: Job set up | |
uses: ./.github/workflows/composite | |
# Generate debug build | |
- name: Build Android app | |
id: generate_debug_build | |
if: always() | |
run: ./gradlew assembleDebug --stacktrace --info |