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 }}