Added gitea workflow
All checks were successful
phpunit / PHPUnit (push) Successful in 3m51s

This commit is contained in:
2024-03-14 17:17:01 +01:00
parent 018c88e0b6
commit 3b15c02a92
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,21 @@
name: 'Install composer dependencies'
description: 'Set up caching and install dependencies'
inputs:
install-release:
description: 'If true, dont install any dev dependencies'
required: false
default: false
runs:
using: "composite"
steps:
- name: Cache composer dependencies
uses: actions/cache@v3
with:
key: ${{ runner.OS }}-composer-cache
path: |
~/.cache/composer
~/.composer
restore-keys: |
${{ runner.OS }}-composer-cache
- name: Install dependencies
run: composer install --no-progress --no-interaction --ansi