GitAuto: [FEATURE] Add ChangeRunner
command
#993
Workflow file for this run
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: Build | |
on: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: build-deploy | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Cache Composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- name: Install dependencies | |
uses: "php-actions/composer@v6" | |
with: | |
php_extensions: sockets | |
dev: no | |
progress: yes | |
working_dir: "./Src/" | |
- name: Create MySQL secrets file | |
run: | | |
cd Src | |
mkdir -p secrets | |
cd secrets | |
echo "<?php" >> mySql.secrets.php | |
echo "\$mySqlHost = \"database\";" >> mySql.secrets.php | |
echo "\$mySqlUser = \"test\";" >> mySql.secrets.php | |
echo "\$mySqlPassword = \"test\";" >> mySql.secrets.php | |
echo "\$mySqlDatabase = \"test\";" >> mySql.secrets.php | |
- name: Docker compose up | |
run: docker compose up -d && sleep 10 | |
- name: Check database | |
env: | |
MYSQL_PWD: test | |
run: | | |
chmod +x Tools/db-check.sh | |
Tools/db-check.sh "localhost" "test" "test" | |
- name: Test branches handler | |
run: curl --location http://localhost:8007/branches.php | |
- name: Test Comments handler | |
run: curl --location http://localhost:8007/comments.php | |
- name: Test Issues handler | |
run: curl --location http://localhost:8007/issues.php | |
- name: Test Pull Requests handler | |
run: curl --location http://localhost:8007/pullRequests.php | |
- name: Test Pushes handler | |
run: curl --location http://localhost:8007/pushes.php | |
- name: Test Repositories handler | |
run: curl --location http://localhost:8007/repositories.php | |
- name: Test Signature handler | |
run: curl --location http://localhost:8007/signature.php |