GPUtil.pyの判定を変更、nvidia-cuda-mps-serverが立ち上がらない場合はErrorとしました #91
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: unittest | |
on: [push] | |
jobs: | |
buildx: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
uses: docker/build-push-action@master | |
with: | |
context: .devcontainer | |
tags: exprorer_msmd | |
push: false | |
- name: Unittest | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: exprorer_msmd | |
options: -v ${{ github.workspace }}:/work | |
run: | | |
cd /work | |
python -m pytest . |