Skip to content

added mutation testing #176

added mutation testing

added mutation testing #176

Workflow file for this run

on: push
jobs:
build:
runs-on: ubuntu-latest
name: Publish package
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install Dependencies
run: |
pip install -e .[build]
- name: Build Package
run: |
python -m build
- name: Publish
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}