Skip to content

Commit

Permalink
Merge pull request #152 from WyriHaximus/allow-directly-on-os-upcomin…
Browse files Browse the repository at this point in the history
…g-vcersions-to-fail

Allow directly on OS upcoming versions to fail
  • Loading branch information
WyriHaximus committed Aug 1, 2022
2 parents 6b1027c + 78518bb commit cb2ec55
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -133,8 +133,13 @@ jobs:
- uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.composer }}
- run: |
make unit-testing-raw
- run: make unit-testing-raw || true
if: needs.supported-versions-matrix.outputs.upcoming == matrix.php
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
COVERALLS_RUN_LOCALLY: ${{ secrets.COVERALLS_RUN_LOCALLY }}
- run: make unit-testing-raw
if: needs.supported-versions-matrix.outputs.upcoming != matrix.php
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
COVERALLS_RUN_LOCALLY: ${{ secrets.COVERALLS_RUN_LOCALLY }}
Expand Down

0 comments on commit cb2ec55

Please sign in to comment.