π Sync supportpal/addon-language-english (#2) #67
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
##################################################################################### | |
# WARNING # | |
##################################################################################### | |
# # | |
# This file is synchronised across all supportpal/addon-language-* repositories. # | |
# Be careful not to hardcode any paths, and only update it in the # | |
# supportpal/addon-language-english repository! # | |
# # | |
##################################################################################### | |
name: test | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
tools: composer:v2, supportpal/language-tools | |
- name: PHP Syntax Check | |
uses: overtrue/[email protected] | |
with: | |
path: . | |
options: --exclude=vendor | |
- name: Set environment | |
run: | | |
LANG_PATH=$(find Lang -mindepth 1 -maxdepth 1 -type d -print -quit) | |
echo "LANG_PATH=$(echo $LANG_PATH)" >> $GITHUB_ENV | |
echo "LANG_NAME=$(basename $LANG_PATH)" >> $GITHUB_ENV | |
- name: Check out English | |
if: ${{ env.LANG_NAME != 'en' }} | |
uses: actions/checkout@v4 | |
with: | |
repository: supportpal/addon-language-english | |
path: addon-language-english/ | |
ref: master | |
- name: Code Quality | |
if: ${{ env.LANG_NAME != 'en' }} | |
run: | | |
language-tools compare addon-language-english/Lang/en/ Lang/${{ env.LANG_NAME }} |