Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
jobs:
tests:
strategy:
fail-fast: false
matrix:
operating-system:
- ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions src/ExampleClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ public function setValue($value)

public function getValueSquared()
{
throw new \RuntimeException("This is an error");

return pow($this->value, 2);
}

Expand Down
1 change: 1 addition & 0 deletions tests/ExampleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ class ExampleTest extends TestCase
public function testExample()
{
$this->assertTrue(true);
$this->fail("This is a message for a faling test");
}
}