Merge pull request #112 from modoboa/dependabot/pip/django-filter-23.5 #43
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: Modoboa postfix autoreply plugin | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
release: | |
branches: [ master ] | |
types: [ published ] | |
env: | |
POSTGRES_HOST: localhost | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:12 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: | |
# will assign a random free host port | |
- 5432/tcp | |
# needed because the postgres container does not provide a healthcheck | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
mysql: | |
image: mysql:8.0 | |
env: | |
MYSQL_ROOT_PASSWORD: root | |
MYSQL_USER: modoboa | |
MYSQL_PASSWORD: modoboa | |
MYSQL_DATABASE: modoboa | |
ports: | |
- 3306/tcp | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
strategy: | |
matrix: | |
database: ['postgres', 'mysql'] | |
python-version: [3.8, 3.9, '3.10', '3.11'] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y && sudo apt-get install -y librrd-dev rrdtool | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r test-requirements.txt | |
cd .. | |
git clone https://github.com/modoboa/modoboa.git | |
cd modoboa | |
python setup.py develop | |
cd ../modoboa-postfix-autoreply | |
python setup.py develop | |
- name: Install postgres requirements | |
if: ${{ matrix.database == 'postgres' }} | |
run: | | |
pip install coverage | |
echo "DB=postgres" >> $GITHUB_ENV | |
- name: Install mysql requirements | |
if: ${{ matrix.database == 'mysql' }} | |
run: | | |
echo "DB=mysql" >> $GITHUB_ENV | |
- name: Test with pytest | |
if: ${{ matrix.python-version != '3.10' || matrix.database != 'postgres' }} | |
run: | | |
cd test_project | |
python3 manage.py test modoboa_postfix_autoreply | |
env: | |
# use localhost for the host here because we are running the job on the VM. | |
# If we were running the job on in a container this would be postgres | |
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }} # get randomly assigned published port | |
MYSQL_HOST: 127.0.0.1 | |
MYSQL_PORT: ${{ job.services.mysql.ports[3306] }} # get randomly assigned published port | |
MYSQL_USER: root | |
- name: Test with pytest and coverage | |
if: ${{ matrix.python-version == '3.10' && matrix.database == 'postgres' }} | |
run: | | |
cd test_project | |
coverage run --source ../modoboa_postfix_autoreply manage.py test modoboa_postfix_autoreply | |
coverage xml | |
coverage report | |
env: | |
# use localhost for the host here because we are running the job on the VM. | |
# If we were running the job on in a container this would be postgres | |
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }} # get randomly assigned published port | |
MYSQL_HOST: 127.0.0.1 | |
MYSQL_PORT: ${{ job.services.mysql.ports[3306] }} # get randomly assigned published port | |
MYSQL_USER: root | |
- name: Upload coverage result | |
if: ${{ matrix.python-version == '3.10' && matrix.database == 'postgres'}} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-results | |
path: test_project/coverage.xml | |
coverage: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download coverage results | |
uses: actions/download-artifact@v3 | |
with: | |
name: coverage-results | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.xml | |
release: | |
if: github.event_name != 'pull_request' | |
needs: coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Build packages | |
run: | | |
sudo apt-get install librrd-dev rrdtool libssl-dev gettext | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -r requirements.txt | |
cd modoboa_postfix_autoreply | |
django-admin compilemessages | |
cd .. | |
python setup.py sdist bdist_wheel | |
- name: Publish to Test PyPI | |
if: endsWith(github.event.ref, '/master') | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.test_pypi_password }} | |
repository_url: https://test.pypi.org/legacy/ | |
skip_existing: true | |
- name: Publish distribution to PyPI | |
if: startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release' | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_password }} | |
skip_existing: true |