Skip to content

Commit

Permalink
Installation check for dfferent python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
arpanda committed Aug 1, 2024
1 parent 5a917fd commit df209b2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/python-test-installation.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit df209b2

Please sign in to comment.