We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d1d20 commit dda9166Copy full SHA for dda9166
.github/workflows/publish.yml
@@ -4,17 +4,19 @@ on:
4
- master
5
jobs:
6
build:
7
- runs-on: macos-latest
+ runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v2
10
- - name: Tap Google's Dart SDK
11
- run: brew tap dart-lang/dart
12
- - name: Install Dart SDK
13
- run: brew install dart
+ - name: Install Flutter
+ uses: subosito/flutter-action@v2
+ with:
+ flutter-version: '3.3.3'
14
- name: Install dependencies
15
- run: dart pub get
+ run: flutter pub get
16
+ - name: Analyze
17
+ run: flutter analyze
18
- name: Run tests
- run: dart pub run test
19
+ run: flutter test
20
- name: Format code
21
run: dart format --fix .
22
- name: Check Publish Warnings
0 commit comments