Merge pull request #303 from uploadcare/chore/prepare-v6.1 #435
This file contains hidden or 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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "main" | |
- "feature/**" | |
- "version-3.x/**" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
virtualenvs-in-project: false | |
- name: Install dependencies | |
run: | | |
poetry install --with dev | |
- name: Run linters | |
run: make lint | |
functional: | |
needs: lint | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.4.2 | |
virtualenvs-create: true | |
virtualenvs-in-project: false | |
- name: Install dependencies | |
run: | | |
poetry install --with dev | |
- name: Test with pytest | |
run: | | |
make test-functional | |
django-2-and-3: | |
needs: functional | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# https://docs.djangoproject.com/en/2.2/faq/install/#what-python-version-can-i-use-with-django | |
# https://docs.djangoproject.com/en/3.2/faq/install/#what-python-version-can-i-use-with-django | |
python-version: ["3.8", "3.9"] | |
django-version: ["2.2", "3.0", "3.1", "3.2"] | |
include: | |
- python-version: "3.10" | |
django-version: "3.2" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.4.2 | |
virtualenvs-create: true | |
virtualenvs-in-project: false | |
- name: install dependencies | |
run: | | |
poetry install --with dev | |
- name: install specific django version | |
run: | | |
poetry run pip install django~=${{ matrix.django-version }} | |
- name: test with pytest | |
run: | | |
make test-django | |
django-4: | |
needs: functional | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# https://docs.djangoproject.com/en/4.2/faq/install/#what-python-version-can-i-use-with-django | |
python-version: ["3.8", "3.9", "3.10"] | |
django-version: ["4.0", "4.1", "4.2"] | |
include: | |
- python-version: "3.11" | |
django-version: "4.1" | |
- python-version: "3.11" | |
django-version: "4.2" | |
- python-version: "3.12" | |
django-version: "4.2" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.4.2 | |
virtualenvs-create: true | |
virtualenvs-in-project: false | |
- name: install dependencies | |
run: | | |
poetry install --with dev | |
- name: install specific django version | |
run: | | |
poetry run pip install django~=${{ matrix.django-version }} | |
- name: test with pytest | |
run: | | |
make test-django | |
django-5: | |
needs: functional | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django | |
python-version: ["3.10", "3.11", "3.12"] | |
django-version: ["5.0"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.4.2 | |
virtualenvs-create: true | |
virtualenvs-in-project: false | |
- name: install dependencies | |
run: | | |
poetry install --with dev | |
- name: install specific django version | |
run: | | |
poetry run pip install django~=${{ matrix.django-version }} | |
- name: test with pytest | |
run: | | |
make test-django | |
integration: | |
needs: functional | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.9] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
virtualenvs-in-project: false | |
- name: Install dependencies | |
run: | | |
poetry install --with dev | |
- name: Test with pytest | |
run: | | |
make test-integration | |
env: | |
UPLOADCARE_PUBLIC_KEY: ${{ secrets.UPLOADCARE_PUBLIC_KEY }} | |
UPLOADCARE_SECRET_KEY: ${{ secrets.UPLOADCARE_SECRET_KEY }} | |