Skip to content

Commit

Permalink
Merge pull request #392 from getkeops/bcharlier-patch-1
Browse files Browse the repository at this point in the history
add self-hosted runner via github-actions. Ci run on a cuda capable machine.
  • Loading branch information
bcharlier authored Oct 25, 2024
2 parents 1f919f8 + 890e45e commit 3f6d158
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/cuda_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Launch test on a cuda machine
name: Cuda test

on:
push

jobs:
test:
runs-on: self-hosted
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Test with pytest
run: |
sh ./pytest.sh

0 comments on commit 3f6d158

Please sign in to comment.