UW-626 Update developer_setup.rst documentation with IDE troubleshooting #970
Workflow file for this run
This file contains 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: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install conda | |
run: .github/scripts/install-conda.sh | |
- name: Documentation Link Check | |
run: .github/scripts/link-check.sh | |
- name: Format Check | |
run: .github/scripts/format-check.sh | |
- name: Test | |
run: .github/scripts/test.sh |