Skip to content

Commit cb2ec55

Browse files
authored
Merge pull request #152 from WyriHaximus/allow-directly-on-os-upcoming-vcersions-to-fail
Allow directly on OS upcoming versions to fail
2 parents 6b1027c + 78518bb commit cb2ec55

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,13 @@ jobs:
133133
- uses: ramsey/composer-install@v2
134134
with:
135135
dependency-versions: ${{ matrix.composer }}
136-
- run: |
137-
make unit-testing-raw
136+
- run: make unit-testing-raw || true
137+
if: needs.supported-versions-matrix.outputs.upcoming == matrix.php
138+
env:
139+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
140+
COVERALLS_RUN_LOCALLY: ${{ secrets.COVERALLS_RUN_LOCALLY }}
141+
- run: make unit-testing-raw
142+
if: needs.supported-versions-matrix.outputs.upcoming != matrix.php
138143
env:
139144
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
140145
COVERALLS_RUN_LOCALLY: ${{ secrets.COVERALLS_RUN_LOCALLY }}

0 commit comments

Comments
 (0)