Allow CLI use without ecFlow installed (#965) #2350
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: Test | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| push: | |
| branches: | |
| - '**' | |
| 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: Validate Driver Configs | |
| run: .github/scripts/validate-driver-configs.sh | |
| - name: Make Docs | |
| run: .github/scripts/make-docs.sh | |
| - name: Format Check | |
| run: .github/scripts/format-check.sh | |
| - name: Test Code Quality | |
| run: .github/scripts/test.sh |