From ac96dfa933c3453a8a3ff752b6f98c43e3034cae Mon Sep 17 00:00:00 2001 From: Simon Asika Date: Fri, 24 May 2024 16:15:09 +0800 Subject: [PATCH] ci --- .github/workflows/ci.yml | 32 ++++++++++++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 33 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e494ec0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,32 @@ +name: UnitTest + +on: [push, pull_request] + +jobs: + build: + strategy: + matrix: + php-versions: [ '8.0', '8.1', '8.2', '8.3' ] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + # PHP + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} +# extensions: mbstring + - name: Get composer cache directory + id: composercache + run: echo "::set-output name=dir::$(composer config cache-files-dir)" + - name: Cache composer dependencies + uses: actions/cache@v2 + with: + path: ${{ steps.composercache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} + restore-keys: ${{ runner.os }}-composer- + - name: Install dependencies + run: composer update --prefer-dist --prefer-stable --no-progress --no-suggest --ignore-platform-reqs + + - name: Run test suite + run: php vendor/bin/phpunit --configuration phpunit.ci.xml diff --git a/.gitignore b/.gitignore index fe9b27e..6b55636 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ .* !.gitignore !.travis.yml +!.github # Composer /vendor/*