From f8be2fc67f79e66354687db0c66475d5f21683f8 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Thu, 31 Oct 2024 10:44:59 +1300 Subject: [PATCH] =?UTF-8?q?ci:=20Added=20workflow=20for=20develop=20branch?= =?UTF-8?q?=20and=20pull=20requests=20=F0=9F=91=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..7833280 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: CI +on: + push: + branches: + - "**!master" + pull_request: + types: [ opened, reopened ] + tags: + - "!**" + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: "shivammathur/setup-php@v2" + with: + php-version: "7.4" + - uses: "ramsey/composer-install@v3" + - uses: php-actions/phpunit@v3 +