Skip to content

Commit

Permalink
split test and lint (/analyze) workflow jobs (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
ponkey364 authored Jun 6, 2022
1 parent 127c62c commit 219cbac
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
pull_request:

jobs:
build:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -15,4 +15,12 @@ jobs:
flutter-version: "2.8.1"
- run: flutter pub get
- run: flutter analyze
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
flutter-version: "2.8.1"
- run: flutter pub get
- run: flutter test

0 comments on commit 219cbac

Please sign in to comment.