Skip to content

Commit

Permalink
Fix variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
DvDty committed Jan 28, 2024
1 parent 6a0ca35 commit 8097043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main-branch-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ jobs:
id: coverage
working-directory: ./application
run: |
current_coverage = $(cat code_coverage.txt)
floor = $(php -r "echo floor($current_coverage) - 1;")
current_coverage=$(cat code_coverage.txt)
floor=$(php -r "echo floor($current_coverage) - 1;")
XDEBUG_MODE=coverage php artisan test --coverage --min=$floor | grep -oP 'Total: \K\d+\.\d+' > code_coverage.txt
- name: Commit code_coverage.txt
Expand Down

0 comments on commit 8097043

Please sign in to comment.