Skip to content

Adds workflow for publishing the next version of the package to PyPi #1

Adds workflow for publishing the next version of the package to PyPi

Adds workflow for publishing the next version of the package to PyPi #1

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ ubuntu-latest, windows-latest, macOS-latest ]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install testing environment and kegg_pull package
run: bash tests/install.sh
- name: Test with pytest
run: bash tests/run.sh