Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/php_documentor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ on:
push:
branches:
- 'master'
# ドキュメント生成のみを確認したい場合に手動実行できるようにする
workflow_dispatch:

jobs:
test:
name: PhpDocumentor

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

strategy:
matrix:
Expand All @@ -23,13 +25,13 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run compose
run: |
cd docker
cp docker-compose.yml.default docker-compose.yml
sed -i -e "s/basercms:php8.1/basercms:php${{ matrix.php-version }}/g" docker-compose.yml
sed -i -e "s|basercms:php[0-9.]*|basercms:php${{ matrix.php-version }}|g" docker-compose.yml
Comment thread
ryuring marked this conversation as resolved.
sed -i -e "s/XDEBUG_MODE: \"debug\"/XDEBUG_MODE: \"off\"/g" docker-compose.yml
docker compose up -d

Expand Down
Loading