Skip to content

Commit

Permalink
ensure django version matches GH matrix version
Browse files Browse the repository at this point in the history
  • Loading branch information
patroqueeet committed Aug 22, 2024
1 parent 0d08592 commit 74848ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/django.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "Django~=${{ matrix.django-version }}"
python -m pip install setuptools
python -m pip install .
python -m pip install "Django~=${{ matrix.django-version }}"
- name: Run Tests
run: |
python ./example/manage.py test django_walletpass
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
python -m pip install "Django~=${{ matrix.django-version }}"
python -m pip install setuptools pylint
python -m pip install .
python -m pip install "Django~=${{ matrix.django-version }}"
- name: Analysing the code with pylint
run: |
pylint --rcfile=.pylintrc $(git ls-files '*.py')

0 comments on commit 74848ff

Please sign in to comment.