lol #2
2 changed files with 37 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
on: [push]
|
||||
on: [pull_request]
|
||||
jobs:
|
||||
build:
|
||||
env:
|
||||
|
@ -9,3 +9,12 @@ jobs:
|
|||
- run: ls -l /opt
|
||||
- run: echo 'lol' >> /opt/hostedtoolcache/omg.txt
|
||||
- run: cat /opt/hostedtoolcache/omg.txt
|
||||
- name: lol
|
||||
run: |
|
||||
output=$(cat ./output.txt)
|
||||
echo $output
|
||||
curl -vvv -X POST \
|
||||
-H "Authorization: token ${GITHUB_TOKEN}" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '{"body": "$output"}' \
|
||||
"${{ env.GITHUB_SERVER_URL }}/api/v1/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"
|
||||
|
|
27
output.txt
Normal file
27
output.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
Escaped mutants:
|
||||
================
|
||||
1) /workspace/lubiana/futtern/src/Controller/FoodVendorController.php:39 [M] ArrayItemRemoval
|
||||
@@ @@
|
||||
$entityManager->flush();
|
||||
return $this->redirectToRoute('app_food_vendor_index', [], Response::HTTP_SEE_OTHER);
|
||||
}
|
||||
- return $this->render('food_vendor/new.html.twig', ['food_vendor' => $foodVendor, 'form' => $form]);
|
||||
+ return $this->render('food_vendor/new.html.twig', ['form' => $form]);
|
||||
}
|
||||
#[Route('/{id}', name: 'app_food_vendor_show', methods: ['GET'])]
|
||||
public function show(FoodVendor $foodVendor): Response
|
||||
Timed Out mutants:
|
||||
==================
|
||||
Skipped mutants:
|
||||
================
|
||||
Not Covered mutants:
|
||||
====================
|
||||
Total: 315
|
||||
Killed: 314
|
||||
Errored: 0
|
||||
Syntax Errors: 0
|
||||
Escaped: 1
|
||||
Timed Out: 0
|
||||
Skipped: 0
|
||||
Ignored: 0
|
||||
Not Covered: 0
|
Loading…
Reference in a new issue