Skip to content

Commit

Permalink
Fix GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
hrichards committed Aug 27, 2024
1 parent 61e2c73 commit cc2203b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
npm i pg
- name: Test with tox
run: |
source venv/bin/activate
source .venv/bin/activate
tox -vv
env:
POSTGRES_HOST: localhost
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
npm i pg
- name: Test with tox
run: |
source venv/bin/activate
source .venv/bin/activate
tox -vv -e py36-django1.11,py36-django2.2
env:
POSTGRES_HOST: localhost
Expand All @@ -96,15 +96,15 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.9'
- name: Install dependencies
run: |
pip install virtualenv
npm i pg
- name: lint
run: |
source venv/bin/activate
source .venv/bin/activate
tox -vv -e flake8
env:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
env:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432

0 comments on commit cc2203b

Please sign in to comment.