Add Turkish translation for get_error_handler() and get_exception_han… #270
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
| # https://docs.github.com/en/actions | |
| name: "Integrate" | |
| on: | |
| pull_request: null | |
| push: | |
| branches: | |
| - "master" | |
| jobs: | |
| build: | |
| name: "Build" | |
| runs-on: "ubuntu-latest" | |
| strategy: | |
| matrix: | |
| language: | |
| - "tr" | |
| steps: | |
| - name: "Checkout php/doc-${{ matrix.language }}" | |
| uses: "actions/checkout@v5" | |
| with: | |
| path: "${{ matrix.language }}" | |
| repository: "php/doc-${{ matrix.language }}" | |
| - name: "Checkout php/doc-en as fallback" | |
| if: "matrix.language != 'en'" | |
| uses: "actions/checkout@v5" | |
| with: | |
| path: "en" | |
| repository: "php/doc-en" | |
| - name: "Checkout php/doc-base" | |
| uses: "actions/checkout@v5" | |
| with: | |
| path: "doc-base" | |
| repository: "php/doc-base" | |
| - name: "Build documentation for ${{ matrix.language }}" | |
| run: "php doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}" |