Skip to content

Bump to v0.1.7

Bump to v0.1.7 #13

Workflow file for this run

name: build
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov coveralls
pip install pandas pydenticon
- name: Install
run: |
pip install -e .
- name: Test with pytest
run: |
python -m pytest --cov blabel --cov-report term-missing
- name: Coveralls
uses: coverallsapp/github-action@v2
continue-on-error: true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
COVERALLS_SERVICE_NAME: github