Add option to enter the password for the live tracking MQTT broker #1978
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: Test | |
on: | |
pull_request: | |
branches: | |
- beta | |
- dev | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: self-hosted | |
# When upgrading: also upgrade dev.yaml, release.yaml, and test.yaml | |
container: ghcr.io/cirruslabs/flutter:3.19.6 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run unit tests and check for styling errors | |
run: | | |
flutter pub get | |
dart format --line-length 120 --set-exit-if-changed . | |
flutter analyze . | |
flutter test |