build(deps): bump peter-evans/create-pull-request from 6.0.5 to 7.0.1 #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
semantic_pull_request: | |
name: Check PR Title | |
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1 | |
flutter-check: | |
name: Build Check | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v4 | |
- name: π¦ Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- name: βοΈ Set up Melos | |
uses: bluefireteam/melos-action@v2 | |
- name: π§ͺ Run Analyze | |
run: melos run analyze | |
- name: π Run Test | |
run: melos run coverage | |
- name: π Generate Coverage | |
id: coverage-report | |
uses: whynotmake-it/[email protected] | |
with: | |
generate_badges: pr | |
check_generation: | |
name: Check Code Generation | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout | |
uses: actions/checkout@v4 | |
- name: π¦ Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- name: βοΈ Set up Melos | |
uses: bluefireteam/melos-action@v2 | |
- name: π¨ Generate | |
run: melos run generate | |
- name: π Check there are no uncommitted changes | |
run: git add . && git diff --exit-code | |