|
|
|
@@ -11,7 +11,7 @@ jobs: |
|
|
|
runs-on: ${{ matrix.os }} |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
os: [ubuntu-latest, windows-latest] |
|
|
|
os: ubuntu-latest |
|
|
|
python-version: [3.8, 3.9] |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
@@ -25,6 +25,10 @@ jobs: |
|
|
|
run: | |
|
|
|
python -m pip install --upgrade pip |
|
|
|
pip install -r ./requirements.txt |
|
|
|
- uses: Jimver/cuda-toolkit@v0.2.10 |
|
|
|
id: cuda-toolkit |
|
|
|
with: |
|
|
|
cuda: '12.1.0' |
|
|
|
- name: Run tests |
|
|
|
run: | |
|
|
|
pytest --cov-config=.coveragerc --cov-report=xml --cov=abl ./tests |
|
|
|
|