Add CI pipeline for NVIDIA GPUs #3
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: Linux NVIDIA GPU tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "quanto/**" | |
- "test/**" | |
- "pyproject.toml" | |
- "setup.py" | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
paths: | |
- "quanto/**" | |
- "test/**" | |
- "pyproject.toml" | |
- "setup.py" | |
jobs: | |
conventional-commits: | |
uses: ./.github/workflows/conventional-commits.yml | |
python-quality: | |
uses: ./.github/workflows/python-quality.yml | |
test-ubuntu: | |
needs: [conventional-commits, python-quality] | |
runs-on: [self-hosted, single-gpu , nvidia-gpu, a10, ci] | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install CUDA Toolkit | |
run: | | |
sudo apt-get update -y | |
sudo apt install nvidia-cuda-toolkit -y | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# Install dependencies | |
- name: Configure and install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install .[dev] | |
# Run tests | |
- name: Run tests | |
run: | | |
python -m pytest test |