Compare commits
1 Commits
bugfix/ci-
...
bugfix/iss
| Author | SHA1 | Date | |
|---|---|---|---|
| 30238ebebe |
16
.github/workflows/code-quality.yml
vendored
16
.github/workflows/code-quality.yml
vendored
@@ -27,9 +27,7 @@ jobs:
|
|||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0
|
run: composer install --prefer-dist --no-progress
|
||||||
with:
|
|
||||||
composer-options: "--prefer-dist --no-progress"
|
|
||||||
|
|
||||||
- name: Run PHPCS
|
- name: Run PHPCS
|
||||||
run: composer phpcs
|
run: composer phpcs
|
||||||
@@ -56,9 +54,7 @@ jobs:
|
|||||||
tools: composer:v2, phpstan
|
tools: composer:v2, phpstan
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0
|
run: composer install --prefer-dist --no-progress
|
||||||
with:
|
|
||||||
composer-options: "--prefer-dist --no-progress"
|
|
||||||
|
|
||||||
- name: Run PHPStan
|
- name: Run PHPStan
|
||||||
run: composer phpstan
|
run: composer phpstan
|
||||||
@@ -79,9 +75,7 @@ jobs:
|
|||||||
tools: composer:v2, phpmd
|
tools: composer:v2, phpmd
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0
|
run: composer install --prefer-dist --no-progress
|
||||||
with:
|
|
||||||
composer-options: "--prefer-dist --no-progress"
|
|
||||||
|
|
||||||
- name: Run PHPMD
|
- name: Run PHPMD
|
||||||
run: composer phpmd
|
run: composer phpmd
|
||||||
@@ -149,8 +143,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Check if Codacy token is set
|
- name: Check if Codacy token is set
|
||||||
id: check_codacy_token
|
id: check_codacy_token
|
||||||
|
env:
|
||||||
|
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
if [ -z "${{ secrets.CODACY_PROJECT_TOKEN }}" ]; then
|
if [ -z "$CODACY_PROJECT_TOKEN" ]; then
|
||||||
echo "CODACY_PROJECT_TOKEN is not set, running Codacy without upload"
|
echo "CODACY_PROJECT_TOKEN is not set, running Codacy without upload"
|
||||||
echo "skip_upload=true" >> $GITHUB_OUTPUT
|
echo "skip_upload=true" >> $GITHUB_OUTPUT
|
||||||
else
|
else
|
||||||
|
|||||||
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@@ -34,12 +34,7 @@ jobs:
|
|||||||
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
echo "VERSION=$VERSION" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: composer install --no-dev --optimize-autoloader
|
||||||
for i in 1 2 3; do
|
|
||||||
composer install --no-dev --optimize-autoloader --prefer-dist && break
|
|
||||||
echo "Composer install attempt $i failed, retrying in 15s..."
|
|
||||||
sleep 15
|
|
||||||
done
|
|
||||||
|
|
||||||
- name: Create build directory
|
- name: Create build directory
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
4
.github/workflows/sonarcloud.yml
vendored
4
.github/workflows/sonarcloud.yml
vendored
@@ -39,8 +39,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Check if SonarCloud token is set
|
- name: Check if SonarCloud token is set
|
||||||
id: check_token
|
id: check_token
|
||||||
|
env:
|
||||||
|
SONARCLOUD_GITHUB: ${{ secrets.SONARCLOUD_GITHUB }}
|
||||||
run: |
|
run: |
|
||||||
if [ -z "${{ secrets.SONARCLOUD_GITHUB }}" ]; then
|
if [ -z "$SONARCLOUD_GITHUB" ]; then
|
||||||
echo "SONARCLOUD_GITHUB is not set, skipping SonarCloud analysis"
|
echo "SONARCLOUD_GITHUB is not set, skipping SonarCloud analysis"
|
||||||
echo "skip=true" >> $GITHUB_OUTPUT
|
echo "skip=true" >> $GITHUB_OUTPUT
|
||||||
else
|
else
|
||||||
|
|||||||
10
.github/workflows/sync-wiki.yml
vendored
10
.github/workflows/sync-wiki.yml
vendored
@@ -23,10 +23,16 @@ jobs:
|
|||||||
git config --global user.email "actions@github.com"
|
git config --global user.email "actions@github.com"
|
||||||
|
|
||||||
- name: Clone wiki repository
|
- name: Clone wiki repository
|
||||||
|
env:
|
||||||
|
GH_REPOSITORY: ${{ github.repository }}
|
||||||
run: |
|
run: |
|
||||||
git clone https://github.com/${{ github.repository }}.wiki.git wiki
|
git clone "https://github.com/${GH_REPOSITORY}.wiki.git" wiki
|
||||||
|
|
||||||
- name: Sync wiki content
|
- name: Sync wiki content
|
||||||
|
env:
|
||||||
|
GH_ACTOR: ${{ github.actor }}
|
||||||
|
GH_REPOSITORY: ${{ github.repository }}
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
# Remove all files from wiki repository except .git
|
# Remove all files from wiki repository except .git
|
||||||
find wiki -mindepth 1 -maxdepth 1 -not -name '.git' -exec rm -rf {} \;
|
find wiki -mindepth 1 -maxdepth 1 -not -name '.git' -exec rm -rf {} \;
|
||||||
@@ -50,4 +56,4 @@ jobs:
|
|||||||
git commit -m "Sync wiki from source repository"
|
git commit -m "Sync wiki from source repository"
|
||||||
|
|
||||||
# Push changes
|
# Push changes
|
||||||
git push https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.wiki.git
|
git push "https://${GH_ACTOR}:${GH_TOKEN}@github.com/${GH_REPOSITORY}.wiki.git"
|
||||||
|
|||||||
14
.github/workflows/tests.yml
vendored
14
.github/workflows/tests.yml
vendored
@@ -28,10 +28,11 @@ jobs:
|
|||||||
extensions: mbstring, intl, zip
|
extensions: mbstring, intl, zip
|
||||||
tools: composer:v2
|
tools: composer:v2
|
||||||
|
|
||||||
|
- name: Clear Composer Cache
|
||||||
|
run: composer clear-cache
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0
|
run: composer install --prefer-dist --no-progress
|
||||||
with:
|
|
||||||
composer-options: "--prefer-dist --no-progress"
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: ./vendor/bin/phpunit
|
run: ./vendor/bin/phpunit
|
||||||
@@ -53,10 +54,11 @@ jobs:
|
|||||||
extensions: mbstring, intl, zip
|
extensions: mbstring, intl, zip
|
||||||
tools: composer:v2, phpcs
|
tools: composer:v2, phpcs
|
||||||
|
|
||||||
|
- name: Clear Composer Cache
|
||||||
|
run: composer clear-cache
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # v2.2.0
|
run: composer install --prefer-dist --no-progress
|
||||||
with:
|
|
||||||
composer-options: "--prefer-dist --no-progress"
|
|
||||||
|
|
||||||
- name: Run PHPCS
|
- name: Run PHPCS
|
||||||
run: composer run phpcs
|
run: composer run phpcs
|
||||||
|
|||||||
Reference in New Issue
Block a user