Skip to content

Introduces documentation into the project #7

Introduces documentation into the project

Introduces documentation into the project #7

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"]
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