Fix cancel with foreign languages #184
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: "CI" | |
| on: [push, pull_request] | |
| jobs: | |
| #pre-commit: | |
| # if: false | |
| # uses: ./.github/workflows/pre-commit.yml | |
| # secrets: inherit | |
| # with: | |
| # gh_event: ${{ github.event_name }} | |
| phan: | |
| if: false # disable phan, too complex to maintain stub file for the moment | |
| uses: ./.github/workflows/phan.yml | |
| secrets: inherit | |
| # needs: [pre-commit] | |
| with: | |
| gh_event: ${{ github.event_name }} | |
| #phpstan: | |
| # if: false | |
| # uses: ./.github/workflows/phpstan.yml | |
| # secrets: inherit | |
| # needs: [pre-commit] | |
| # with: | |
| # gh_event: ${{ github.event_name }} | |
| #windows-ci: | |
| # if: false | |
| # needs: [pre-commit, phpstan, phan] | |
| # secrets: inherit | |
| # uses: ./.github/workflows/windows-ci.yml | |
| # with: | |
| # gh_event: ${{ github.event_name }} | |
| #gh-travis: # Runs travis script on github runner (not on travis) | |
| # if: false | |
| # # needs: [pre-commit, phan] | |
| # # needs: [windows-ci] | |
| # secrets: inherit | |
| # uses: ./.github/workflows/gh-travis.yml | |
| # with: | |
| # gh_event: ${{ github.event_name }} |