feat: add integration test workflow (#3)

This commit is contained in:
Damien Retzinger
2022-06-25 21:15:05 -04:00
committed by GitHub
parent 72b1f25310
commit d638c02eca
5 changed files with 193 additions and 3 deletions
@@ -0,0 +1,12 @@
<?php
namespace Graycore\DemoPackage\Test\Unit;
class ItWorksTest extends \PHPUnit\Framework\TestCase
{
public function testItWorks()
{
$this->assertEquals(true, true);
}
}