Docstrings for codegen #727
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: Run Tests | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| max-parallel: 4 | |
| fail-fast: false | |
| matrix: | |
| os: [macos-latest, windows-latest, ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| version: "latest" | |
| - name: Install | |
| run: | | |
| uv sync --all-extras | |
| - name: Run tests | |
| run: | | |
| uv run pytest -n auto -vv --cov=nodebpy --cov-report=xml | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| if: matrix.os == 'macos-latest' | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| name: coverage.xml | |
| - name: Upload coverage reports to Codecov | |
| if: matrix.os == 'macos-latest' | |
| uses: codecov/codecov-action@v3 |