Skip to content

Commit

Permalink
build: add install with pypi test
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjermiah committed Feb 2, 2024
1 parent 0b6c7f1 commit 648ea4f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,28 @@ jobs:
ghcr.io/${{ github.repository }}/nbiatoolkit:latest
labels: ${{ steps.meta.outputs.labels }}

test_install_withPyPi:
needs: Continuous-Deployment
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14]
python-version: ["3.10", "3.12", "3.11"]

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install using PyPi
run: |
pip install -y nbiatoolkit;
NBIAToolkit
test_image_with_new_tag:
needs: Continuous-Deployment
runs-on: ubuntu-latest
Expand Down

0 comments on commit 648ea4f

Please sign in to comment.