Rename extraction function for species names #250
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: Tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [ main, master ] | |
| push: | |
| branches: [ main, master ] | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| - name: Install dependencies | |
| run: | | |
| pip install pytest pandas | |
| - name: Test scripts | |
| run: | | |
| pytest scripts/ | |
| - name: Sunbeam tests | |
| uses: sunbeam-labs/sbx_test_action@v1 | |
| - name: Dump Logs | |
| shell: bash | |
| if: always() | |
| run: tail -n +1 logs/* || true | |
| - name: Dump Stats | |
| shell: bash | |
| if: always() | |
| run: cat stats/* || true |