feat(llc)!: rework the logger and use it in the WebSocket client #690
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: pana | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| stream_core: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π Git Checkout | |
| uses: actions/checkout@v4 | |
| - name: π Verify Pana Score | |
| uses: ./.github/actions/pana | |
| with: | |
| working_directory: packages/stream_core | |
| min_score: 125 # Missing 10 points for no example, 10 points for license, and 10 points for `publish_to` in pubspec. | |
| stream_core_flutter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π Git Checkout | |
| uses: actions/checkout@v4 | |
| - name: π Verify Pana Score | |
| uses: ./.github/actions/pana | |
| with: | |
| working_directory: packages/stream_core_flutter | |
| min_score: 120 # Missing 10 points for no license, 10 points for no example, and 20 points for static analysis issues. | |
| stream_thumbnail: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π Git Checkout | |
| uses: actions/checkout@v4 | |
| - name: π Verify Pana Score | |
| uses: ./.github/actions/pana | |
| with: | |
| working_directory: packages/stream_thumbnail | |
| min_score: 150 # Missing 10 points for static analysis issues. |