Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .cirrus.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/cuda_test.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/black.yml → .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Lint

on: [push, pull_request]
on: [pull_request]

jobs:
lint:
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Launch test on various platforms
name: Test

on: [pull_request, workflow_dispatch]

jobs:
test-ubuntu-gpu:
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Test with pytest
run: |
bash ./pytest.sh

test-ubuntu-cpu:
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Test with pytest
env:
CUDA_VISIBLE_DEVICES: -1
run: |
bash ./pytest.sh

test-macos:
runs-on: macOS-latest
steps:
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Clone Repository
uses: actions/checkout@v2
- name: Test with pytest
run: |
bash ./pytest.sh