Update release notes #186
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: Check docstring coverage | |
| on: | |
| - pull_request | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout head branch | |
| uses: actions/checkout@v4 | |
| with: | |
| path: head | |
| - name: Checkout base branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.base_ref }} | |
| path: base | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install interrogate | |
| run: pip install -r head/requirements-interrogate.txt | |
| - name: Run interrogate on base branch for baseline | |
| run: echo "old_cov=$(echo $(head/.github/workflows/interrogate.sh base/opentaxii) - '0.1' | bc)" >> $GITHUB_ENV | |
| - name: Run interrogate on head branch to check coverage didn't drop | |
| run: interrogate --fail-under=${{ env.old_cov }} head/opentaxii |