Add funding and acknowledgments note to index page #442
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: Worker Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test-worker: | |
| name: Test Worker | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Python & Conda | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| environment-file: worker/environment.yml | |
| activate-environment: v-pipe-scout-worker | |
| auto-activate-base: false | |
| - name: Unit Tests | |
| run: conda run -n v-pipe-scout-worker pytest | |
| working-directory: ./worker | |
| env: | |
| PYTHONPATH: ${{ github.workspace }}/worker:${{ github.workspace }} |