name: tests_cuda on: workflow_dispatch: push: branches: - "main" paths: - "**/*.py" - "pyproject.toml" - "Makefile" - ".github/workflows/*.yml" pull_request: branches: - "main" paths: - "**/*.py" - "pyproject.toml" - "Makefile" - ".github/workflows/*.yml" jobs: tests: strategy: fail-fast: false matrix: python: - "3.11" os: - "linux-x86_64-gpu-2" runs-on: ${{ matrix.os }} concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python }} cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} env: HF_HOME: "${{ github.workspace }}/../.runner_cache/huggingface" UV_CACHE_DIR: "${{ github.workspace }}/../.runner_cache/uv" UV_NO_SYNC: 1 steps: - name: Checkout uses: actions/checkout@v4 - name: Install uv uses: astral-sh/setup-uv@v7 with: python-version: ${{ matrix.python }} github-token: ${{ github.token }} enable-cache: false - name: Check GPU Status run: nvidia-smi - name: Install dependencies run: | uv venv uv pip install -e . uv pip install -r requirements/dev.txt - name: Check quality run: | make style && make quality - name: Check license run: | make license - name: Check build run: | make build - name: Test with pytest run: | make test