Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tilucasoli committed Feb 1, 2024
1 parent 394dd2b commit cf5aadf
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
test_mix_repo:
runs-on: ubuntu-latest
name: Test Mix Repo
steps:
- name: Checkout mix repo
uses: actions/checkout@v2
Expand All @@ -35,8 +36,9 @@ jobs:

- run: cd main && flutter test

update_and_analyze_remix_ui:
analyze_breaking_changes:
runs-on: ubuntu-latest
name: Analyze Breaking Changes

needs: test_mix_repo
steps:
Expand Down Expand Up @@ -88,11 +90,12 @@ jobs:
})
test_remix_ui:
analyze_behavior_changes:
runs-on: ubuntu-latest
name: Analyze Behavior Changes
continue-on-error: true
needs: update_and_analyze_remix_ui
if: ${{ needs.update_and_analyze_remix_ui.result == 'success' }}
needs: analyze_breaking_changes
if: ${{ needs.analyze_breaking_changes.result == 'success' }}
steps:
- name: Checkout mix repo
uses: actions/checkout@v2
Expand Down

0 comments on commit cf5aadf

Please sign in to comment.