fix test_set_up_dask_clean_existing_cluster #4634
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
| # ----------------------------------------------------------------------------- | |
| # - invoked on push, pull_request, manual trigger, or schedule | |
| # - test under all supported versions of python (python_versions.json) | |
| # ----------------------------------------------------------------------------- | |
| name: build | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 8 * * *" | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11"] | |
| uses: | |
| ihmeuw/vivarium_build_utils/.github/workflows/build.yml@main | |
| with: | |
| dependencies: "layered_config_tree" | |
| python_version: ${{ matrix.python-version }} | |
| skip_mypy: true | |
| secrets: | |
| notify_email: ${{ secrets.NOTIFY_EMAIL }} | |
| NOTIFY_PASSWORD: ${{ secrets.NOTIFY_PASSWORD }} |