Skip to content

Commit

Permalink
Merge pull request #120 from JordyHers-org/bugfix/118-update-the-ci-p…
Browse files Browse the repository at this point in the history
…ipeline-that-is-failing-because-the-generated-files-are-missing

fix(#118) : add more jobs to run
  • Loading branch information
JordyHers committed Jun 14, 2023
2 parents e2f5a57 + b02746c commit 64d3c1e
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 2 deletions.
28 changes: 27 additions & 1 deletion .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,28 @@ on:
- dev

jobs:
test:

generate:
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: Install Dependencies
run: flutter pub get

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

test:
needs: generate
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -40,7 +59,14 @@ jobs:
- name: Install Dependencies
run: flutter pub get


- name: Analyze
run: flutter analyze








24 changes: 23 additions & 1 deletion .github/workflows/deploy-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,28 @@ on:
- master

jobs:
test:

generate:
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: Install Dependencies
run: flutter pub get

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

test:
needs: generate
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -43,3 +62,6 @@ jobs:
- name: Analyze
run: flutter analyze




0 comments on commit 64d3c1e

Please sign in to comment.