From 47a563064b86b5ca470e8e6d873f13c50646890e Mon Sep 17 00:00:00 2001 From: Angelo Ashmore Date: Wed, 13 Dec 2023 15:46:46 -1000 Subject: [PATCH] ci: add GitHub Actions CI (#202) * ci: add GitHub Actions CI config * ci: fix job names * ci: fix dependency caching * ci: remove cache restore keys * ci: add composer via action * ci: simplify workflow * ci: add apc * ci: activate apc * ci: try again --- .github/workflows/ci.yml | 43 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 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 00000000..690f11bb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,43 @@ +name: ci + +on: push + +jobs: + suite: + name: Suite (${{ matrix.os }}, PHP ${{ matrix.php }}) + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest] + php: ["8.0", "8.1", "8.2"] + + steps: + - name: Set up PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: apcu + ini-values: apc.enable=1, apc.enable_cli=1 + + - name: Checkout + uses: actions/checkout@master + + - name: Get composer cache directory + id: composer-cache + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT + + - name: Cache dependencies + uses: actions/cache@v3 + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + + - name: Install dependencies + run: composer install --prefer-dist + + - name: Test + run: composer test + + - name: Lint + run: composer cs-check