From 0686f22a198d100db58d2cfbf20526cb1b8bfc14 Mon Sep 17 00:00:00 2001 From: Chicory Date: Tue, 29 Oct 2024 13:15:36 +0300 Subject: [PATCH] Cleanup --- ...run-full-tests.yaml => run-full-test.yaml} | 1 - src/ExampleClass.php | 13 --------- tests/ExampleClassTest.php | 27 ------------------- 3 files changed, 41 deletions(-) rename .gitea/workflows/{run-full-tests.yaml => run-full-test.yaml} (97%) delete mode 100644 src/ExampleClass.php delete mode 100644 tests/ExampleClassTest.php 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()); - } -}