DELIBE-180: Fix some issues when an Institution.representatives_mappi… #571
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: Test package | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: gha-runners-delib-py3 | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12"] | |
plone-version: ["6.0"] | |
experimental: [false] | |
steps: | |
- name: Run tests | |
uses: IMIO/gha/plone-package-test-notify@v3 | |
env: | |
cache-name: cache-eggs | |
with: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
CACHE_KEY: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.python-version }} | |
TEST_COMMAND: bin/test | |
REQUIREMENTS_FILE: 'requirements-tests.txt' | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.DELIB_MATTERMOST_WEBHOOK_URL }} | |
BUILDOUT_CONFIG_FILE: 'test-${{ matrix.plone-version }}.cfg' |