mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
* feat: add libravatar support (#114) and format * feat: add documentation for libravatar * fix(gh-actions): remove support for 3.6 and add 3.11 3.6 reached EOL: https://devguide.python.org/versions/ I also refactored the matrix by removing duplicated code * fix(deps): add missing dnspython * feat(deps): add requirements.txt * fix(gh-actions): install deps * chore(deps): add pyproject.toml See https://github.com/pypa/pip/issues/8559 * fix(gh-actions): add fail-fast so all checks run * fix(deps): bump coverage to 7.1.0 * fix(pre-commit): update versions * fix(pre-commit): config error * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * style: update code for passing flake * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: 0xMRTT <0xMRTT@evta.fr> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
name: Test
|
|
on: [push, pull_request]
|
|
jobs:
|
|
Build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ['3.8', '3.9', '3.10', '3.11']
|
|
django-version: ['3.2', '4.0', '4.1']
|
|
include:
|
|
- python-version: 3.7
|
|
django-version: 3.2
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: '${{ matrix.python-version }}'
|
|
cache: 'pip'
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -r requirements.txt
|
|
pip install -r tests/requirements.txt
|
|
pip install "Django~=${{ matrix.django-version }}.0" .
|
|
- name: Run Tests
|
|
run: |
|
|
echo "$(python --version) / Django $(django-admin --version)"
|
|
export DJANGO_SETTINGS_MODULE=tests.settings
|
|
export PYTHONPATH=.
|
|
coverage run --source=avatar `which django-admin` test tests
|
|
coverage report
|
|
coverage xml
|
|
- name: Upload coverage reports to Codecov with GitHub Action
|
|
uses: codecov/codecov-action@v3
|