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 80f8ec2
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,35 @@ on:
- cron: "0 8 * * 1"

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: "Setup upterm session"
uses: "lhotari/action-upterm@v1"

- 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 80f8ec2

Please sign in to comment.