diff --git a/.github/workflows/php83.yml b/.github/workflows/php83.yml new file mode 100644 index 0000000..aa17ee0 --- /dev/null +++ b/.github/workflows/php83.yml @@ -0,0 +1,35 @@ +name: Test + +on: + pull_request: + branches: + - "*" + push: + branches: + - "*" + +jobs: + checks: + name: Check PHP 8.3 + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up PHP 8.3 + uses: shivammathur/setup-php@v2 + with: + php-version: '8.3' + + - name: Install Dependencies + run: composer install --prefer-dist --ignore-platform-reqs --no-interaction + + - name: Check code styling + run: composer ecs-check + + - name: Create keys + run: sh ./bin/create_keys + + - name: Run unit and feature tests + run: composer test