From ac88454de2fd174ec982cd74678ec54a8e834e0c Mon Sep 17 00:00:00 2001 From: Robbert Broersma Date: Mon, 12 Dec 2022 21:33:26 +0100 Subject: [PATCH] ci: add `composer install` CI check --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 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..4b93408 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + php_version: ['7.4', '8.1'] + + steps: + - uses: actions/checkout@v3 + - uses: php-actions/composer@v6 + with: + php_extensions: intl + php_version: ${{ matrix.php_version }}