feat(tinymce): upgrade settings to version 7 #64
Workflow file for this run
  
    
      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
    
  
  
    
  | name: Tests | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| black: | |
| runs-on: gha-runners-smartweb | |
| steps: | |
| - name: Checkout codebase | |
| uses: actions/checkout@v4 | |
| - name: Run check | |
| uses: IMIO/gha/code-analysis-notify@v3.9.4 | |
| with: | |
| BASE_DIR: 'src' | |
| CHECK: 'black' | |
| PATH: | | |
| imio/smartweb/common | |
| MATTERMOST_WEBHOOK_URL: ${{ secrets.SMARTWEB_MATTERMOST_WEBHOOK_URL }} | |
| test: | |
| runs-on: gha-runners-smartweb | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| plone-version: ['6.0', '6.1'] | |
| python-version: ['3.10', '3.11', '3.12', '3.13'] | |
| steps: | |
| - name: Checkout codebase | |
| uses: actions/checkout@v4 | |
| - name: Run check | |
| uses: IMIO/gha/plone-package-test-notify@v3.9.4 | |
| with: | |
| CACHE_KEY: eggs-test-${{ hashFiles('base.cfg') }}-python-${{ matrix.python-version }} | |
| TEST_COMMAND: TZ=UTC bin/test | |
| BUILDOUT_CONFIG_FILE: 'test_plone-${{ matrix.plone-version }}.cfg' | |
| REQUIREMENTS_FILE: 'requirements-${{ matrix.plone-version }}.txt' | |
| MATTERMOST_WEBHOOK_URL: ${{ secrets.SMARTWEB_MATTERMOST_WEBHOOK_URL }} | |
| PYTHON_VERSION: ${{ matrix.python-version }} | |
| coverage: | |
| runs-on: gha-runners-smartweb | |
| steps: | |
| - name: Checkout codebase | |
| uses: actions/checkout@v4 | |
| - name: Run check | |
| uses: IMIO/gha/plone-package-test-notify@v3.9.4 | |
| with: | |
| CACHE_KEY: eggs-test-${{ hashFiles('base.cfg') }}-python-3.10 | |
| TEST_COMMAND: TZ=UTC coverage run bin/test | |
| REQUIREMENTS_FILE: 'requirements-coverage.txt' | |
| MATTERMOST_WEBHOOK_URL: ${{ secrets.SMARTWEB_MATTERMOST_WEBHOOK_URL }} | |
| - name: Submit to Coveralls | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: coveralls --service=github |