Update lineage_notes.txt and alias_key.json #106
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: Compare lineages.csv and lineage_notes.txt | |
| on: | |
| push: | |
| paths: | |
| - 'lineages.csv' | |
| - 'lineage_notes.txt' | |
| pull_request: | |
| paths: | |
| - 'lineages.csv' | |
| - 'lineage_notes.txt' | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Search for lineages in lineages_notes.txt but not in lineages.csv and vice versa | |
| run: python utils/check_lineages_notes.py |