Skip to content

Commit

Permalink
add alls-green job for build_examples build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
shadow578 committed Mar 27, 2024
1 parent f42bbf2 commit e1ab28f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,14 @@ jobs:
# build the 'CI' environment
- name: Build 'ci' environment
run: pio run --project-dir ${{ matrix.example }} --environment ci

# dummy job after all examples were build
all_build:
runs-on: ubuntu-latest
needs: [build]
if: always()
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

0 comments on commit e1ab28f

Please sign in to comment.