Fixes bug in center-of-mass radii of gyration #62
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
name: Linter | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
linter: | |
name: Linter | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Additional info about the build | |
shell: bash | |
run: | | |
uname -a | |
df -h | |
ulimit -a | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: devtools/conda-envs/lint_env.yaml | |
environment-name: linter | |
create-args: >- | |
python=${{ matrix.python-version }} | |
- name: Install package | |
# conda setup requires this special shell | |
shell: bash -l {0} | |
run: | | |
python -m pip install . --no-deps | |
micromamba list | |
- name: Run flake8 | |
shell: bash -l {0} | |
run: flake8 --ignore=E203,W503 cvpack/ | |
- name: Run black | |
shell: bash -l {0} | |
run: black --line-length 100 --diff --color cvpack/ | |
- name: Run isort | |
shell: bash -l {0} | |
run: isort --check-only cvpack/ | |
- name: Run pylint | |
shell: bash -l {0} | |
run: pylint --rcfile=devtools/linters/pylintrc cvpack/ |