Skip to content

Add 2.4.0 information to the LayoutLMv3 readme #2786

Add 2.4.0 information to the LayoutLMv3 readme

Add 2.4.0 information to the LayoutLMv3 readme #2786

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://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8"] #["3.7", "3.8", "3.9"] TBA
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/dev.txt
# MindSpore must be installed following the instruction from official web, but not from pypi.
# That's why we exclude mindspore from requirements.txt. Does this work?
pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/2.3.0/MindSpore/unified/x86_64/mindspore-2.3.0-cp38-cp38-linux_x86_64.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple
- name: Lint with pre-commit
uses: pre-commit/[email protected]
- name: Check_Cpplint
run: |
cpplint --root=src --extensions=cxx,cu,hh,cpp,hxx,cuh,h++,cc,c,hpp,c++,h,tpp,txx,cl \
--filter=-build/header_guard,-build/c++11,-legal/copyright --quiet --linelength=160 \
--recursive deploy/cpp_infer
- name: Test with pytest (UT)
run: |
pytest tests/ut/*.py
- name: Test with pytest (ST)
run: |
pytest tests/st/*.py