From b34005af1b1f542a53ab255486b7510d78d7fb84 Mon Sep 17 00:00:00 2001 From: netkas Date: Thu, 19 Sep 2024 14:01:22 -0400 Subject: [PATCH] Removed test.yml --- .github/workflows/test.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index f87cbeb..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build and Test - -on: [push, pull_request] - -jobs: - build: - uses: nosial/ncc-workflow/.github/workflows/build.yml@main - with: - ncc_package_path: build/release/net.nosial.configlib.ncc - - test: - needs: build - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Download build artifacts - uses: actions/download-artifact@v4 - with: - name: ncc-build - path: ncc-build - - - name: Setup NCC - uses: nosial/ncc-workflow/.github/workflows/build.yml@main - with: - ncc_package_path: ncc-build/net.nosial.configlib.ncc - - - name: Run PHPUnit tests - run: | - wget https://phar.phpunit.de/phpunit-11.3.phar - php phpunit-11.3.phar --configuration phpunit.xml