Skip to content

Add PyPI publish workflow, unit testing workflow #1

Add PyPI publish workflow, unit testing workflow

Add PyPI publish workflow, unit testing workflow #1

Workflow file for this run

name: Run ECabc tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install pytest pytest-md
- name: Install package
run: python -m pip install .
- name: Run tests
uses: pavelzw/pytest-action@v2
with:
emoji: false
report-title: 'ECabc test report'