Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Felice Ostuni committed Jun 12, 2024
1 parent 8dbf779 commit 53dded2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -42,6 +44,15 @@ jobs:
- name: Execute tests
run: vendor/bin/phpunit --coverage-clover=coverage.xml

- name: Checkout branch
run: git checkout -B ${{ github.head_ref }}

- name: Auto commit and push changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Fix styling
branch: ${{ github.head_ref }}

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
Expand Down

0 comments on commit 53dded2

Please sign in to comment.