test
Some checks failed
/ build (push) Failing after 5s

This commit is contained in:
lubiana 2023-10-16 19:15:01 +02:00
parent 63dc61769d
commit fcaf69c2ad
No known key found for this signature in database

View file

@ -1,9 +1,21 @@
on: [push]
jobs:
composer:
runs-on: docker
container:
image: git.php.fail/lubiana/container/php:8.2
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: composer install
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: mbstring, intl, pdo_sqlite
coverage: xdebug
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress