Skip to content

Updated torch docs #134

Updated torch docs

Updated torch docs #134

name: Python Package using Conda
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
activate-environment: test
- shell: bash -l {0}
run: |
pip install --upgrade keras
conda info
conda list
conda config --show-sources
conda config --show
printenv | sort
- name: Lint with flake8
shell: bash -l {0}
run: |
micromamba install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=100 --max-line-length=127 --statistics
- name: Test with pytest
shell: bash -l {0}
run: |
pytest