v0.6.2 #180
Workflow file for this run
This file contains 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
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
- '*.*.*' | |
pull_request: | |
branches: | |
- master | |
- '*.*.*' | |
release: | |
types: [ published ] | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.12' | |
- name: Install packages | |
run: pip install -r requirements_dev.txt | |
- name: Black | |
run: | | |
black --check -l 120 django_opensearch_dsl/ tests/ | |
isort: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.12' | |
- name: Install packages | |
run: pip install -r requirements_dev.txt | |
- name: Isort | |
run: | | |
isort --check django_opensearch_dsl/ tests/ | |
pycodestyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.12' | |
- name: Install packages | |
run: pip install -r requirements_dev.txt | |
- name: Pycodestyle | |
run: | | |
pycodestyle django_opensearch_dsl/ tests/ | |
pydocstyle: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.12' | |
- name: Install packages | |
run: pip install -r requirements_dev.txt | |
- name: Pydocstyle | |
run: | | |
pydocstyle --count django_opensearch_dsl/ tests/ | |
bandit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.12' | |
- name: Install packages | |
run: pip install -r requirements_dev.txt | |
- name: Bandit | |
run: | | |
bandit --ini=setup.cfg -ll 2> /dev/null | |
test: | |
needs: [black, isort, pycodestyle, pydocstyle, bandit] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ 3.9, '3.10', '3.11', '3.12'] | |
django-version: [ 32, 42, 50 ] | |
opensearch-version: [ 10, 20 ] | |
exclude: | |
- python-version: 3.9 | |
django-version: 50 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@master | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run Opensearch in docker | |
run: | | |
docker compose up -d opensearch_test_${{ matrix.opensearch-version }} | |
sleep 30 | |
- name: Install Tox and any other packages | |
run: | | |
pip install tox | |
- name: Python ${{ matrix.python-version }}, Django ${{ matrix.django-version }}, Opensearch ${{ matrix.opensearch-version }} | |
run: tox -e py-django${{ matrix.django-version }}-opensearch${{ matrix.opensearch-version }} | |
- name: Upload coverage to Codecov | |
if: matrix.python-version == 3.12 && matrix.django-version == 50 | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.xml | |
publish: | |
needs: test | |
if: github.event_name == 'release' && github.event.action == 'published' | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Creating Built Distributions | |
run: | | |
pip install setuptools | |
python setup.py sdist | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.pypi_password }} | |
skip_existing: true |