diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b4f0828 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,26 @@ +name: test +on: + push: + branches: + - main + pull_request: + branches: + - main +jobs: + CLIP-test: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.8', '3.9', '3.10'] + pytorch-version: [1.10.2, 1.13.1] + exclude: + - python-version: '3.10' + pytorch-version: 1.10.2 + steps: + - uses: conda-incubator/setup-miniconda@v2 + - run: conda install -n test python=${{ matrix.python-version }} pytorch=${{ matrix.pytorch-version }} cpuonly -c pytorch + - uses: actions/checkout@v2 + - run: echo "$CONDA/envs/test/bin" >> $GITHUB_PATH + - run: pip install pytest + - run: pip install . + - run: pytest -k 'not test_transcribe or test_transcribe[tiny]'