Skip to content

Correct README's pointer to reproduce_competition.yaml #19

Correct README's pointer to reproduce_competition.yaml

Correct README's pointer to reproduce_competition.yaml #19

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install (CPU torch)
run: |
python -m pip install --upgrade pip
pip install torch --index-url https://download.pytorch.org/whl/cpu
pip install -e .[test]
- name: Run tests
run: pytest -v