fixed the linking between protein and protein sequence #13
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: Linting | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
linting_job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: grantmcconnaughey/[email protected] | |
with: | |
# The GitHub API token to create reviews with | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Fail if "new" violations detected or "any", default "new" | |
failIf: any | |
# Additional arguments to pass to flake8, default "." (current directory) | |
# E501 is lines that are too long | |
args: "--ignore=E501 ." |