Bump zipp from 3.18.1 to 3.19.1 #541
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: Build Django CQRS | |
on: | |
push: | |
branches: "*" | |
tags: | |
- '*' | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build_3_8_9_10_11_django_3_2: | |
name: Build on Python ${{ matrix.python-version }} and django 3.2 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
poetry run pip install django==3.2.* | |
- name: Linting | |
run: | | |
poetry run flake8 | |
- name: Testing | |
run: | | |
poetry run pytest | |
build_3_11_django_4_2: | |
name: Build on Python 3.11 django 4.2 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.11'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
poetry run pip install django==4.2.* | |
- name: Linting | |
run: | | |
poetry run flake8 | |
- name: Testing | |
run: | | |
poetry run pytest | |
build_3_10_django_4_1: | |
name: Build on Python 3.10 django 4.1 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
poetry run pip install django==4.1.* | |
- name: Linting | |
run: | | |
poetry run flake8 | |
- name: Testing | |
run: | | |
poetry run pytest | |
sonar: | |
name: Sonar Checks | |
needs: [build_3_8_9_10_11_django_3_2, build_3_11_django_4_2, build_3_10_django_4_1] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
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: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
poetry run pip install django==4.2.* | |
- name: Testing | |
run: | | |
poetry run pytest | |
- name: Fix coverage report for Sonar | |
run: | | |
sed -i 's/\/home\/runner\/work\/django-cqrs\/django-cqrs\//\/github\/workspace\//g' ./tests/reports/coverage.xml | |
- name: SonarCloud | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: Wait sonar to process report | |
uses: jakejarvis/wait-action@master | |
with: | |
time: '15s' | |
- name: SonarQube Quality Gate check | |
uses: sonarsource/sonarqube-quality-gate-action@master | |
timeout-minutes: 5 | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
compatibility: | |
name: Compatibility and Integration Tests | |
needs: [sonar] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
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: Integration tests | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
INTEGRATION_TESTS: yes | |
run: | | |
./travis_integration_tests.sh | |
- name: Compatibility tests | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
COMPAT_TESTS: yes | |
run: | | |
./travis_compat_tests.sh |