Skip to content

Commit

Permalink
move flutter format to dart format its been removed
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahlukus committed Oct 23, 2023
1 parent 46b40f7 commit 3bf0b11
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,33 @@ name: Test

# Run on every pull-requests
on: [push, pull_request]


jobs:
test:
# This job will run on ubuntu virtual machine
runs-on: ubuntu-latest
steps:

# Setup Java environment in order to build the Android app.
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: '12.x'

# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
flutter-version: '3.0.x'

# Get flutter dependencies.
- run: flutter pub get

# Check for any formatting issues in the code.
- run: flutter format --set-exit-if-changed .
- run: dart format -l 80 --set-exit-if-changed .

# Statically analyze the Dart code for any errors.
- run: flutter analyze .

# Run unit and widget tests for our flutter project.
- run: flutter test

0 comments on commit 3bf0b11

Please sign in to comment.