Skip to content

add documentation archive url #74

add documentation archive url

add documentation archive url #74

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Building and Testing
on:
push:
branches: [ "master", "bnlp_4_dev" ]
pull_request:
branches: [ "master", "bnlp_4_dev" ]
jobs:
build:
runs-on: ${{ matrix.os }} #ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
exclude:
- os: ubuntu-latest
python-version: "3.6"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
python -m pip install -r requirements.txt
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Testing
run: |
python -m tests.tokenizer.test_basic_tokenizer
python -m tests.tokenizer.test_nltk_tokenizer
python -m tests.tokenizer.test_sentencepiece_tokenizer
python -m tests.embedding.test_docvec
python -m tests.embedding.test_glove
python -m tests.embedding.test_word2vec
python -m tests.token_classification.test_ner
python -m tests.token_classification.test_pos