[luci-value-test] Add tolerance for Mean_U8_000 test (#16337) #20748
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: Check code format | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release/* | |
| pull_request: | |
| branches: | |
| - master | |
| - release/* | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| check-format: | |
| name: Check format | |
| runs-on: ubuntu-24.04 | |
| if: github.repository_owner == 'Samsung' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: "0.9.10" | |
| - name: Check format all files | |
| run: | | |
| uv run pre-commit run -a | |
| check-copyright: | |
| name: Check copyright | |
| runs-on: ubuntu-22.04 | |
| if: github.repository_owner == 'Samsung' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| # Fetch all history and branch (default: 1) | |
| # Require all history to get file creation date | |
| fetch-depth: 0 | |
| - name: Check copyright | |
| run: ./nnas copyright-check |