resource/alicloud_esa_origin_pool: Changed the field origin_pool_id, origins.origin_id from TypeInt to TypeString; Improved alicloud_esa_origin_pool testcase #13067
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: Testing Coverage Rate Checks | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| pull_request_target: | |
| types: | |
| - opened | |
| paths: | |
| - .github/workflows/testing-coverage-rate.yml | |
| - .go-version | |
| - alicloud/*.go | |
| jobs: | |
| TestingCoverageRate: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.24.x' | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 2 | |
| - name: Checking testing coverage rate | |
| run: | | |
| git diff HEAD^ HEAD > diff.out | |
| go run scripts/testing/testing_coverage_rate_check.go -fileNames="diff.out" |