Merge pull request #3134 from Walde1nsamkeit/patch-2 #1569
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: Analyze lineage notes | |
| on: | |
| push: | |
| paths: | |
| - lineage_notes.txt | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.11 | |
| - name: Install packages | |
| run: pip install pandas | |
| - name: Analyze lineage notes file | |
| run: python analyze_lineage_notes.py |