adjust logo size #8
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: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write # for codecov OIDC (no token needed) | |
| env: | |
| TORCH: "2.4.1" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| cache: pip | |
| - name: Install CPU PyTorch | |
| run: pip install "torch==${TORCH}" --index-url https://download.pytorch.org/whl/cpu | |
| - name: Install PyG compiled deps (CPU wheels) | |
| run: pip install torch-scatter torch-sparse -f "https://data.pyg.org/whl/torch-${TORCH}+cpu.html" | |
| - name: Install cellina with test extras | |
| run: pip install -e ".[test]" | |
| - name: Run tests | |
| run: pytest --cov=cellina --cov-report=xml | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| use_oidc: true | |
| files: ./coverage.xml | |
| fail_ci_if_error: false |