Add new lokalise:sync command to sync a single file to by first uploa… #53
Workflow file for this run
This file contains hidden or 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: run-tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: PHP 8.1 test | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.1 | |
| coverage: xdebug | |
| - name: Install dependencies | |
| run: | | |
| composer install | |
| - name: Execute tests | |
| run: vendor/bin/phpunit --coverage-clover coverage.xml |