Publish the proto schemas and bindings as release assets #1097
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: coverage | ||
|
Check failure on line 1 in .github/workflows/coverage.yml
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| coverage: | ||
| if: "!contains(github.event.pull_request.labels.*.name, 'docs-only')" | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v7.0.1 | ||
| with: | ||
| persist-credentials: false | ||
| - uses: compas-dev/compas-actions/setup-python@v1 | ||
| with: | ||
| python-version: '3.12' | ||
| management-tool: uv | ||
| extras: dev | ||
| - name: Run pre-build | ||
| run: invoke pre-build | ||
| - name: Run tests collecting coverage reports | ||
| - name: Run tests collecting coverage reports | ||
| run: pytest --cov src/compas_timber --cov-report=xml --cov-report=term | ||
| - name: Upload coverage reports to Codecov | ||
| uses: codecov/codecov-action@v5 | ||
| with: | ||
| token: ${{ secrets.CODECOV_TOKEN }} | ||