Skip to content

build

build #9

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 dna_features_viewer
- name: Install
run: |
pip install -e .
- name: Test with pytest
run: |
python -m pytest --cov crazydoc --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