added tests for package #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Package Test | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
BPEtokenizerTest: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install bpetokenizer | |
run: | | |
python -m pip install --upgrade pip | |
pip install bpetokenizer | |
pip install pytest | |
- name: Run Tests | |
run: | | |
python -m pytest |