Fix/ Error in console for 403 images for loading the reciters #453
Workflow file for this run
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: Check source code quality | |
on: | |
pull_request: | |
branches: | |
- main | |
- 'release-*' | |
jobs: | |
lint: | |
name: Check lints | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- run: flutter --version | |
# Check for any formatting issues in the code. | |
- name: Verify formatting | |
run: dart format --set-exit-if-changed . --line-length 120 |