From df209b2729ad9c5b8482bd3d007fdaabf9aed975 Mon Sep 17 00:00:00 2001 From: arpanda Date: Thu, 1 Aug 2024 10:45:24 -0500 Subject: [PATCH] Installation check for dfferent python versions --- .../workflows/python-test-installation.yml | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/python-test-installation.yml diff --git a/.github/workflows/python-test-installation.yml b/.github/workflows/python-test-installation.yml new file mode 100644 index 0000000..792f1e8 --- /dev/null +++ b/.github/workflows/python-test-installation.yml @@ -0,0 +1,33 @@ +name: Installation check for dfferent python versions + +on: [push] + +jobs: + build: + strategy: + fail-fast: false + matrix: + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + os: [ubuntu-latest] + + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: | + pip install -r requirements.txt + pip install . + + - name: cnvpytor Usage + run: | + cnvpytor -h + + - name: cnvpytor resource + run: | + cnvpytor -download \ No newline at end of file