更新文档 #4
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, pull_request] | |
jobs: | |
ci: | |
name: Linux Swoole-${{ matrix.swoole }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
swoole: [5.1-php8.2, 5.1-php8.1, 5.0-php8.2, 5.0-php8.1] | |
env: | |
SWOOLE_DOCKER_VERSION: ${{ matrix.swoole }} | |
REDIS_SERVER_HOST: redis | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Prepare | |
run: | | |
docker-compose -f ./.github/docker-compose.yml up -d | |
docker exec swoole php -v | |
docker exec swoole php -m | |
docker exec swoole php --ri swoole | |
docker exec swoole composer -V | |
docker exec swoole composer update --no-interaction --prefer-dist --no-progress | |
- name: Test | |
run: docker exec swoole composer test |