From 6770962392237a58e736269879cc31fae4fff9d4 Mon Sep 17 00:00:00 2001 From: Robbert Broersma Date: Sun, 26 Nov 2023 11:30:43 +0100 Subject: [PATCH] ci: check `composer install` in GitHub Actions --- .github/workflows/php.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/php.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml new file mode 100644 index 0000000..79a506e --- /dev/null +++ b/.github/workflows/php.yml @@ -0,0 +1,11 @@ +name: Continuous Integration: PHP + +jobs: + build: + runs-on: ubuntu-latest + + - name: Install dependencies + uses: php-actions/composer@v6 + with: + php_version: "7.4" + version: "2.x" \ No newline at end of file