Skip to content

Commit

Permalink
fix up action
Browse files Browse the repository at this point in the history
  • Loading branch information
tooxo committed May 8, 2021
1 parent 9080a8a commit 5cf8618
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/unittests.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
steps:
- on: [push]
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- run: flutter pub get
- run: flutter test
name: Flutter Unittests
on: [push]
jobs:
RunUnittests:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- run: flutter pub get
- run: flutter test

0 comments on commit 5cf8618

Please sign in to comment.