From 028edd74b2aafc33b7a8c6f9133242fa5c79ed30 Mon Sep 17 00:00:00 2001 From: trisdoan Date: Tue, 14 May 2024 11:51:55 +0700 Subject: [PATCH] sale_order_type: mark as rebel module --- .copier-answers.yml | 3 ++- .github/workflows/test.yml | 12 ++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index 7bab30297c9c..96e95d6cce9b 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -16,7 +16,8 @@ odoo_test_flavor: Both odoo_version: 17.0 org_name: Odoo Community Association (OCA) org_slug: OCA -rebel_module_groups: [] +rebel_module_groups: +- sale_order_type repo_description: This project aim to deal with modules related to manage sale and their related workflow. repo_name: sale-workflow diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03c1acbbcf0b..ade49478c4de 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -36,8 +36,17 @@ jobs: matrix: include: - container: ghcr.io/oca/oca-ci/py3.10-odoo17.0:latest + include: "sale_order_type" name: test with Odoo - container: ghcr.io/oca/oca-ci/py3.10-ocb17.0:latest + include: "sale_order_type" + name: test with OCB + makepot: "true" + - container: ghcr.io/oca/oca-ci/py3.10-odoo17.0:latest + exclude: "sale_order_type" + name: test with Odoo + - container: ghcr.io/oca/oca-ci/py3.10-ocb17.0:latest + exclude: "sale_order_type" name: test with OCB makepot: "true" services: @@ -49,6 +58,9 @@ jobs: POSTGRES_DB: odoo ports: - 5432:5432 + env: + INCLUDE: "${{ matrix.include }}" + EXCLUDE: "${{ matrix.exclude }}" steps: - uses: actions/checkout@v3 with: