File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ test :
11+ name : Test on ${{ matrix.os }} / ${{ matrix.python-version }}
12+ runs-on : ${{ matrix.os }}
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ os : [ubuntu-latest, macos-latest, windows-latest]
17+ python-version : ["3.8", "3.10", "3.12"]
18+
19+ steps :
20+ - uses : actions/checkout@v4
21+
22+ - name : Set up Python ${{ matrix.python-version }}
23+ uses : actions/setup-python@v5
24+ with :
25+ python-version : ${{ matrix.python-version }}
26+
27+ - name : Install dependencies
28+ run : |
29+ python -m pip install --upgrade pip
30+ pip install uv
31+
32+ - name : Install libomp (macOS)
33+ if : runner.os == 'macOS'
34+ run : brew install libomp
35+
36+ - name : Build and install
37+ run : uv pip install --system -e .
38+
39+ - name : Install pytest
40+ run : uv pip install --system pytest
41+
42+ - name : Run tests
43+ run : pytest
Original file line number Diff line number Diff line change 1111.pytest_cache /
1212install.log
1313GEMINI.md
14+ TODO.md
15+ verify_omp.py
You can’t perform that action at this time.
0 commit comments