fixing docs #107
Workflow file for this run
This file contains hidden or 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
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 5 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python 3.8 # Set Python version to 3.8 or 3.9 | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: '3.8' # Change to a version compatible with TensorFlow | |
| - name: Install dependencies | |
| run: | | |
| pip install -r requirements.txt | |
| - name: Lint with flake8 | |
| run: | | |
| conda install flake8 | |
| flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
| flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
| - name: Test with pytest | |
| run: | | |
| python setup.py install | |
| conda install pytest | |
| pytest |