[CHA-0] Add user_message_reminders field to ChannelType for channel type updates #332
Workflow file for this run
This file contains hidden or 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: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| name: 🧪 Test & lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Test | |
| env: | |
| STREAM_KEY: ${{ secrets.STREAM_KEY }} | |
| STREAM_SECRET: ${{ secrets.STREAM_SECRET }} | |
| run: | | |
| ./gradlew spotlessCheck --no-daemon | |
| ./gradlew javadoc --no-daemon | |
| ./gradlew jacocoTestReport --no-daemon |