Skip to content

Merge pull request #2 from OpenPecha/feat/write-pecha-annotation #12

Merge pull request #2 from OpenPecha/feat/write-pecha-annotation

Merge pull request #2 from OpenPecha/feat/write-pecha-annotation #12

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
- name: Test Coverage
run: PYTHONPATH=src pytest --cov project_name