dataconnect(test): be more lax in the ChiSquareTest significance result assertion to reduce false positives in unit tests #9844
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: API Information | |
| on: [ pull_request ] | |
| jobs: | |
| api-information-check: | |
| if: github.event.pull_request.head.repo.full_name == github.repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 2 | |
| submodules: true | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2 | |
| - name: Set up Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: '3.12' | |
| pip-version: '26.0.1' | |
| - name: Set up fireci | |
| run: pip3 install -e ci/fireci | |
| - name: Run api-information check | |
| run: | | |
| fireci api_information \ | |
| --issue_number=${{ github.event.pull_request.number }} \ | |
| --repo_name=${{ github.repository }} \ | |
| --auth_token=${{ secrets.GOOGLE_OSS_BOT_TOKEN }} |