Skip to content

Test PyPi package

Test PyPi package #1

Workflow file for this run

name: Test PyPi package
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Delete local package
run: |
rm -rf ./pygenesis
- name: Install package from PyPi
run: |
python -m pip install --upgrade pip
pip install -U pygenesis
- name: Install Dev Requirements
run: |
pip install -r dev-requirements.txt
- name: Run tests
run: |
make test