Skip to content

Move transliterator to it's own package #6

Move transliterator to it's own package

Move transliterator to it's own package #6

Workflow file for this run

name: Pytest
on:
pull_request:
branches:
- master
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt # Replace with your dependencies
- name: Run Pytest
run: pytest