diff --git a/.gitea/workflows/run-full-tests.yaml b/.gitea/workflows/run-full-test.yaml similarity index 97% rename from .gitea/workflows/run-full-tests.yaml rename to .gitea/workflows/run-full-test.yaml index 9a891fb..b2e502f 100644 --- a/.gitea/workflows/run-full-tests.yaml +++ b/.gitea/workflows/run-full-test.yaml @@ -2,7 +2,6 @@ name: Run code tests run-name: Run code tests on: push: - workflow_dispatch: jobs: Run-code-test: diff --git a/src/ExampleClass.php b/src/ExampleClass.php deleted file mode 100644 index d94784d..0000000 --- a/src/ExampleClass.php +++ /dev/null @@ -1,13 +0,0 @@ -exampleClass = new ExampleClass(); - - parent::setUp(); - } - - public function testExampleClass(): void - { - $this->assertEquals('Hello', $this->exampleClass->sayHello()); - } -}