音声トラック毎に音量調整できるかの検証UIを足す #1034
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 | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- 'CHANGES.md' | |
- 'LICENSE' | |
- 'THANKS' | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Copy gradle.properties | |
run: cp gradle.properties.example gradle.properties | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Lint Check | |
run: ./gradlew ktlintCheck | |
- name: Slack Notification | |
if: failure() | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_CHANNEL: sora-android-sdk | |
SLACK_COLOR: danger | |
SLACK_TITLE: Build failed | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |