Skip to content

Commit

Permalink
Remove comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaehwa-Noh authored May 15, 2024
1 parent 61f2899 commit a8dafc2
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,48 +18,48 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build_apk"
# build_apk:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest
# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
# - name: Checkout
# uses: actions/checkout@v4

# - name: Gradle Wrapper Validation
# uses: gradle/actions/wrapper-validation@v3.3.2
build_apk:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v4

- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v3.3.2

# - name: SetUp Java
# uses: actions/setup-java@v4
# with:
# distribution: temurin
# java-version: 17
- name: SetUp Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

# - name: Setup Gradle
# uses: gradle/actions/setup-gradle@v3
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3

# - name: Make gradlew executable
# working-directory: ./Compose-Flight-Search-App
# run: chmod +x ./gradlew
- name: Make gradlew executable
working-directory: ./Compose-Flight-Search-App
run: chmod +x ./gradlew

# - name: Check spotless
# working-directory: ./Compose-Flight-Search-App
# run: ./gradlew spotlessApply
- name: Check spotless
working-directory: ./Compose-Flight-Search-App
run: ./gradlew spotlessApply

# - name: Run unit test
# working-directory: ./Compose-Flight-Search-App
# run: ./gradlew test
- name: Run unit test
working-directory: ./Compose-Flight-Search-App
run: ./gradlew test

# - name: Build
# working-directory: ./Compose-Flight-Search-App
# run: ./gradlew assemble
- name: Build
working-directory: ./Compose-Flight-Search-App
run: ./gradlew assemble


# - uses: actions/upload-artifact@v4
# with:
# name: apk_output
# path: ./**/build/outputs/apk/**/*.apk
- uses: actions/upload-artifact@v4
with:
name: apk_output
path: ./**/build/outputs/apk/**/*.apk


android_test:
Expand Down

0 comments on commit a8dafc2

Please sign in to comment.