Fix ID used when listening to updates on new sites #91
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: Flutter format | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- '.github/workflows/flutterfmt.yml' | |
- '.github/workflows/flutterfmt.sh' | |
- '**.dart' | |
jobs: | |
gofmt: | |
name: Run flutter format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.24.1' | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Check formating | |
run: dart format -l120 lib/ --set-exit-if-changed --suppress-analytics --output none |