Skip to content

Fixes #66 - sudachitra not being compatible with transformers version newer than 4.34 #151

Fixes #66 - sudachitra not being compatible with transformers version newer than 4.34

Fixes #66 - sudachitra not being compatible with transformers version newer than 4.34 #151

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
branches: [main]
jobs:
test:
name: Test package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Display Python version
run: |
python -c "import sys; print(sys.version)"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Test
run: |
python -m unittest discover tests