Fix/339 bug update exit code if recursed directory contains errors #699
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: Validation | |
| on: | |
| push: | |
| branches: [main, dev, maint/*] | |
| pull_request: | |
| branches: [main, dev, maint/*] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| codespell: | |
| name: Check for spelling errors | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7 | |
| - name: Run codespell | |
| run: uvx codespell | |
| validate_cff: | |
| name: Validate CITATION.cff | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7 | |
| with: | |
| python-version: 3 | |
| - name: Validate CITATION.cff | |
| run: uvx cffconvert --validate | |
| check_change_log: | |
| name: Check changelog | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check for changes in changelog | |
| env: | |
| BASE_REF: ${{ github.event.pull_request.base.ref }} | |
| NO_CHANGELOG_LABEL: ${{ contains(github.event.pull_request.labels.*.name, 'no changelog') }} | |
| run: .github/scripts/scriv_check.sh | |
| shell: bash |