docs: add requirements and graph compile time to readmes #1180
Workflow file for this run
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
# 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.9"] | |
# include: | |
# - os: macos-latest | |
# python-version: "3.8" | |
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 | |
pip install "Pillow==9.1.1" | |
# 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 "mindspore>=1.8" | |
- name: Lint with pre-commit | |
uses: pre-commit/[email protected] | |
- name: Test with pytest (UT) | |
run: | | |
pytest tests/modules/*.py | |
- name: Test with pytest (ST) | |
run: | | |
pytest tests/tasks/*.py |