Skip to content

bump version 0.3.0 -> 0.3.1 #11

bump version 0.3.0 -> 0.3.1

bump version 0.3.0 -> 0.3.1 #11

Workflow file for this run

name: Run tests of omataxonomy
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "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 dependencies
run: |
python -m ensurepip
python -m pip install --upgrade pip
python -m pip install poetry
- name: Install dependencies for package
run: |
python -m poetry install
- name: Test with pytest
run: |
python -m poetry run pytest