Bump prefix-dev/rattler-build-action from 0.2.38 to 0.2.39 #503
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
| # .github/workflows/ci.yml | |
| on: [push, pull_request] | |
| name: CI | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| # If you have a requirements-dev.txt, prefer that (recommended) | |
| if [ -f requirements-dev.txt ]; then | |
| pip install --no-cache-dir -r requirements-dev.txt | |
| else | |
| # Fallback minimal deps (at least numpy required for tests) | |
| pip install --no-cache-dir numpy scipy matplotlib scikit-learn sympy pytest flake8 | |
| fi | |
| - name: Run tests | |
| run: pytest -q | |
| - name: Lint | |
| run: flake8 --max-line-length=120 || true |