Skip to content

Commit

Permalink
Debug CI segfault
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Mar 3, 2024
1 parent f7ebe4d commit 8fe870e
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,35 @@ on:
schedule:
- cron: "0 8 * * 1"

name: Nette Tester

jobs:
coverage:
name: "Nette Tester"
uses: contributte/.github/.github/workflows/nette-tester-coverage.yml@v1
tests:
name: "Nette Tester (8.1)"
runs-on: "ubuntu-latest"

steps:
- name: "Checkout"
uses: "actions/checkout@v3"

- name: "PHP"
uses: "contributte/.github/.github/actions/setup-php@v1"
with:
php: "8.1"

- name: "Composer"
uses: "contributte/.github/.github/actions/setup-composer@v1"
with:
command: "composer update --no-interaction --no-progress --prefer-dist --prefer-stable"

- name: "Run Nette Tester"
run: "make coverage"

- name: "Coveralls.io"
env:
CI_NAME: github
CI: true
COVERALLS_REPO_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
run: |
wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.3/php-coveralls.phar
php php-coveralls.phar --verbose --config tests/.coveralls.yml

0 comments on commit 8fe870e

Please sign in to comment.