{bio}[foss/2022a] warp v2.0.0dev20, dotNET-SDK v8.0.204, PyTorch v2.0.1, AreTomo2 v1.0.0, torchvision v0.15.2, w/ CUDA 11.8.0 #28270
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: Static Analysis | |
on: [push, pull_request] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
concurrency: | |
group: ${{format('{0}:{1}:{2}', github.repository, github.ref, github.workflow)}} | |
cancel-in-progress: true | |
jobs: | |
python-linting: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: install Python packages | |
run: | | |
pip install --upgrade pip | |
pip install --upgrade flake8 | |
- name: Run flake8 to verify PEP8-compliance of Python code | |
run: flake8 | |
- name: Run flake8 to verify PEP8-compliance of Easyconfigs | |
run: flake8 --select F,W605 --filename '*.eb' |