[CHA-768] feat: enhance get_message method to support options and add tests for deleted messages #123
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: reviewdog | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| rubocop: | |
| name: 🐶 Reviewdog | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3 | |
| - name: rubocop | |
| uses: reviewdog/action-rubocop@v2 | |
| with: | |
| rubocop_version: gemfile | |
| reporter: github-pr-review |