feat: DOH for web & custom reachability checker #78
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: Build | |
on: | |
pull_request: | |
branches: | |
- master | |
- 'rc/*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install environment | |
uses: subosito/[email protected] | |
with: | |
flutter-version: 3.16.9 | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Analyze the project | |
run: flutter analyze | |
- name: Check format | |
run: dart format --fix --set-exit-if-changed . | |
- name: Run the tests | |
run: flutter test |