Skip to content

chore: bump version to 0.11.7 #62

chore: bump version to 0.11.7

chore: bump version to 0.11.7 #62

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.11" ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install STRkit
run: pip install .
- name: Test
run: pytest -svv --cov=strkit --cov-branch