update docs #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: push | |
jobs: | |
run: | |
name: Continuous Integration | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- run: docker compose up -d caddy php-fpm knots redis | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
- run: composer install | |
- run: php vendor/bin/php-cs-fixer check -v | |
- run: composer setup | |
- run: composer test | |
- if: always() | |
run: docker compose down -v |