support Chinese docs for CN README #78
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-linux-gpu: | |
runs-on: self-hosted | |
strategy: | |
fail-fast: false | |
# matrix: | |
# python-version: ["3.9"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install Dependencies | |
run: | | |
pip install black | |
- name: Black Format Check | |
run: black --check . | |
- name: Run Tests | |
run: | | |
docker run -u ci:ci --gpus all --rm -v ${{ github.workspace }}:/app cuda11_py11:latest \ | |
bash -c "cd /app && \ | |
sudo bash ./.github/workflows/setup_env.sh && \ | |
pip install -e . && \ | |
python -m unittest discover tests" | |
- name: Display Speed Test | |
run: cat speed_test.txt | |
- name: Upload Test Results as Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: speed-test-results | |
path: speed_test.txt |