Skip to content

Commit

Permalink
added flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Pankey committed May 4, 2023
1 parent fe2c2f3 commit cc84cc2
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,22 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
#python -m pip install --upgrade pip
#pip install -r requirements.txt
#pip install toil
#pip install cwl-utils
#pip install cwltool
#pip install --upgrade toil[all]
#pip install toil-cwl-runner
#pip install --upgrade pip
run: |
pip install pip==19.3.1
pip install --force-reinstall 'setuptools<58.0.0'
pip install -r requirements.txt
pip install -r requirements-toil.txt
python manage.py migrate
#python manage.py migrate
- name: Run migrations
run: python manage.py migrate
- name: Run tests
- name: Run test
run: python manage.py test
- name: flake8 Lint
uses: py-actions/flake8@v2
env:
RIDGEBACK_DB_NAME: github_actions
RIDGEBACK_DB_PASSWORD: postgres
Expand Down

0 comments on commit cc84cc2

Please sign in to comment.