feat: update to the latests native SDKs #46
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 and Lint | |
on: [pull_request] | |
jobs: | |
test: | |
name: Check the source code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Check Flutter version | |
run: flutter --version | |
- name: Install packages | |
run: flutter pub get | |
- name: Linter | |
run: flutter analyze | |
- name: Test | |
run: flutter test |