Skip to content

Commit

Permalink
initual guess for github workflow (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
sroet authored Feb 21, 2024
1 parent 1280814 commit baf5e5b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Unit tests"
on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- "[0-9]+.[0-9]+.[0-9]+"
schedule:
# Weekly on saturday 23:59
- cron: "59 23 * * 6"

defaults:
runs-on: [self-hosted, linux, x64, gpu]
container:
image: continuumio/miniconda3
options: --runtime=nvidia --gpus all

jobs:
test_suite:
steps:
- name: check running dir
run: ls -a .
- name: test-gpu-avail
run: nvidia-smi

0 comments on commit baf5e5b

Please sign in to comment.