LITE-31232 Fixed access to bulk_relate_cm
in cqrs_state
#48
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: Publish Django CQRS Library | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
publish: | |
name: Build and Publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- 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 | |
- 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 }} | |
- name: Extract tag name | |
uses: actions/github-script@v6 | |
id: tag | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
result-encoding: string | |
script: | | |
return context.payload.ref.replace(/refs\/tags\//, '') | |
- name: Publish | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
poetry version ${{ steps.tag.outputs.result }} | |
poetry build | |
poetry publish -u $TWINE_USERNAME -p $TWINE_PASSWORD |