Skip to content

Feat/read pecha annotation #24

Feat/read pecha annotation

Feat/read pecha annotation #24

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
pip install -U pip
pip install .
pip install .[dev]
- name: Test with pytest
run: PYTHONPATH=src pytest
env:
GITHUB_TOKEN: " "
- name: Test Coverage
run: PYTHONPATH=src pytest --cov openpecha
env:
GITHUB_TOKEN: " "