Skip to content

Update and rename dart.yml to test.yml #1

Update and rename dart.yml to test.yml

Update and rename dart.yml to test.yml #1

Workflow file for this run

name: Test and Lint
on:
push:
jobs:
test:
name: Run test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.3.10'
channel: 'stable'
- name: Run pub get
run: flutter pub get
- name: Run test
run: flutter test
lint:
name: Run lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.3.10'
channel: 'stable'
- name: Run pub get
run: flutter pub get
- name: Run analyze
run: flutter analyze