| name: Coverage Linux |
| |
| on: |
| pull_request: |
| types: [opened, synchronize, reopened] |
| paths-ignore: |
| - '**.md' |
| - benchmark/** |
| - doc/** |
| - tools/** |
| - unit-test/** |
| - .github/** |
| - '!.github/workflows/coverage-linux.yml' |
| push: |
| branches: |
| - main |
| paths-ignore: |
| - '**.md' |
| - benchmark/** |
| - doc/** |
| - tools/** |
| - unit-test/** |
| - .github/** |
| - '!.github/workflows/coverage-linux.yml' |
| |
| env: |
| PYTHON_VERSION: '3.11' |
| NODE_VERSION: '22.x' |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| coverage-linux: |
| runs-on: ubuntu-latest |
| steps: |
| - name: Harden Runner |
| uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 |
| with: |
| egress-policy: audit |
| |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
| with: |
| persist-credentials: false |
| - name: Set up Python ${{ env.PYTHON_VERSION }} |
| uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 |
| with: |
| python-version: ${{ env.PYTHON_VERSION }} |
| - name: Use Node.js ${{ env.NODE_VERSION }} |
| uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 |
| with: |
| node-version: ${{ env.NODE_VERSION }} |
| - name: Environment Information |
| run: npx envinfo |
| - name: Install gcovr |
| run: pip install gcovr==6.0 |
| - name: Install dependencies |
| run: npm install |
| - name: Test with coverage |
| run: | |
| npm run create-coverage |
| - name: Generate coverage report (XML) |
| run: | |
| npm run report-coverage-xml |
| - name: Upload |
| uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1 |
| with: |
| directory: ./coverage-xml |