fix: move 试用功能 dropdown to end of nav bar #72
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: | |
| push: | |
| pull_request: | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements_minimal.txt | |
| pip install pytest | |
| - name: Run tests | |
| run: | | |
| python -m pytest -q | |
| module-gates: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| module: | |
| - module_data_jobs | |
| - module_factor_engine | |
| - module_feature_engineering | |
| - module_ml_model | |
| - module_backtest | |
| - module_portfolio | |
| - module_scoring | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements_minimal.txt | |
| pip install pytest | |
| - name: Run module gate | |
| run: pytest -m ${{ matrix.module }} -q |