Skip to content

Commit

Permalink
fix: remove redundant test call on github workflow
Browse files Browse the repository at this point in the history
fix: add clip local.properties to github workflow
  • Loading branch information
thisisWooyeol committed Dec 9, 2023
1 parent 255df01 commit c74ac6a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
run: chmod +x gradlew
- name: Add API_BASE_URL to local.properties
run: echo "API_BASE_URL= \"${{ secrets.API_BASE_URL }}\"" >> local.properties
- name: Add CLIP_BASE_URL to local.properties
run: echo "CLIP_BASE_URL= \"${{ secrets.CLIP_BASE_URL }}\"" >> local.properties
- name: Add CLIP_API_KEY to local.properties
run: echo "CLIP_API_KEY= \"${{ secrets.CLIP_API_KEY }}\"" >> local.properties

- name: Build with Gradle
run: ./gradlew clean build
- name: Test with Gradle
run: ./gradlew test
run: ./gradlew clean build
2 changes: 0 additions & 2 deletions .github/workflows/springboot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,3 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build
- name: Test with Gradle
run: ./gradlew test

0 comments on commit c74ac6a

Please sign in to comment.