From f9d96524e9d7b42a9d2abb133a53b9aa407c258c Mon Sep 17 00:00:00 2001 From: Netkas Date: Tue, 17 Sep 2024 16:33:03 -0400 Subject: [PATCH] Create test.yml --- .github/workflows/test.yml | 50 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..d96cba9 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,50 @@ +name: Build and Test + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Use NCC Workflow + uses: nosial/ncc-workflow/.github/workflows/build.yml@main + with: + ncc_package_path: build/release/net.nosial.configlib.ncc + + - name: Build project + run: | + ncc build --config release --log-level debug + + - name: Upload build artifacts + uses: actions/upload-artifact@v4 + with: + name: ncc-build + 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: Use NCC Workflow + 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