Skip to content

Commit

Permalink
fix(#118) : fix wrong steps
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyHers committed Jun 14, 2023
1 parent fdcdac9 commit ba15c2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 36 deletions.
23 changes: 3 additions & 20 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,28 +59,11 @@ jobs:
- name: Install Dependencies
run: flutter pub get

- name: Analyze
run: flutter analyze

- name: Check format lib
run: dart format --set-exit-if-changed .


format:
needs: test
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Flutter
uses: subosito/flutter-action@v1
with:
flutter-version: 3.7.12
run: dart format --set-exit-if-changed

- name: Generate
run: flutter pub run build_runner build --delete-conflicting-outputs
- name: Analyze
run: flutter analyze



Expand Down
19 changes: 3 additions & 16 deletions .github/workflows/deploy-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,25 +59,12 @@ jobs:
- name: Install Dependencies
run: flutter pub get

- name: Check format lib
run: dart format --set-exit-if-changed

- name: Analyze
run: flutter analyze

- name: Check format lib
run: dart format --set-exit-if-changed .


format:
needs: test
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Flutter
uses: subosito/flutter-action@v1
with:
flutter-version: 3.7.12

- name: Generate
run: flutter pub run build_runner build --delete-conflicting-outputs

0 comments on commit ba15c2c

Please sign in to comment.