From 493dfffa37505bee2184d0452429b73ddc007de0 Mon Sep 17 00:00:00 2001 From: Jong Wook Kim Date: Tue, 17 Jan 2023 13:35:48 -0800 Subject: [PATCH] add github action to run pytest --- .github/workflows/test.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test.yml 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]'