diff --git a/.copier-answers.yml b/.copier-answers.yml index ba0e02e18..653dedb99 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -8,7 +8,8 @@ include_wkhtmltopdf: false odoo_version: 14.0 org_name: Odoo Community Association (OCA) org_slug: OCA -rebel_module_groups: [] +rebel_module_groups: +- web_widget_model_viewer repo_description: "This project aims to deal with modules related to the webclient\ \ of Odoo. You'll find modules that:\n\n - Add facilities to the UI\n - Add widgets\n\ \ - Ease the import/export features\n - Generally add clientside functionality" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1c4fe5171..2500f55a7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,9 +36,18 @@ jobs: matrix: include: - container: ghcr.io/oca/oca-ci/py3.6-odoo14.0:latest + include: "web_widget_model_viewer" makepot: "true" name: test with Odoo - container: ghcr.io/oca/oca-ci/py3.6-ocb14.0:latest + include: "web_widget_model_viewer" + name: test with OCB + - container: ghcr.io/oca/oca-ci/py3.6-odoo14.0:latest + exclude: "web_widget_model_viewer" + makepot: "true" + name: test with Odoo + - container: ghcr.io/oca/oca-ci/py3.6-ocb14.0:latest + exclude: "web_widget_model_viewer" name: test with OCB services: postgres: @@ -49,6 +58,9 @@ jobs: POSTGRES_DB: odoo ports: - 5432:5432 + env: + INCLUDE: "${{ matrix.include }}" + EXCLUDE: "${{ matrix.exclude }}" steps: - uses: actions/checkout@v2 with: