mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-20 15:41:33 +00:00
git-subtree-dir: resources/translations git-subtree-mainline:ca332588b8
git-subtree-split:822b73086d
24 lines
431 B
YAML
24 lines
431 B
YAML
name: Verify translations
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'l10n/*'
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@2.30.0
|
|
with:
|
|
php-version: 8.3
|
|
|
|
- name: Verify translations
|
|
run: php .github/workflows/verify-translations.php ${{ github.workspace }}
|