✅ Do not error if process not found in kill processes test #1462
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: Citation File Validation | |
| on: | |
| push: | |
| branches: [ "main", "dev", "hotfix/update-ci" ] | |
| pull_request: | |
| branches: [ "main", "dev", "hotfix/update-ci" ] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| - name: Install Checker | |
| run: python3 -m pip install cffconvert | |
| - name: Check Citation File | |
| run: cffconvert --validate |