add test.yml (#139)

This commit is contained in:
Jong Wook Kim 2021-08-12 03:24:27 -07:00
parent fcab8b6eb9
commit fa56f25251
1 changed files with 17 additions and 0 deletions

17
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: test
on: push
jobs:
CLIP-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
pytorch-version: [1.7.1, 1.9.0]
steps:
- uses: conda-incubator/setup-miniconda@v2
- run: conda install -n test python=${{ matrix.python-version }} pytorch=${{ matrix.pytorch-version }} torchvision cpuonly -c pytorch
- uses: actions/checkout@v2
- run: echo "$CONDA/envs/test/bin" >> $GITHUB_PATH
- run: pip install pytest
- run: pip install .
- run: pytest