Bug fix dcli 3.4.0 and dart 3.4 - up to dcli 4.0.0 #21
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: pull_request_ci | |
on: pull_request | |
jobs: | |
lint-unit-tests: | |
name: Lint + Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: 'stable' | |
- name: Install packages | |
run: | |
dart pub get | |
- name: Lint | |
run: | |
dart analyze | |
- name: Unit tests | |
run: | |
dart test |