[REF] CI: Add rebels modules using copier

This commit is contained in:
Moises Lopez
2022-05-11 18:11:50 +00:00
parent da2fbbd2d7
commit e0fa05ac03
4 changed files with 26 additions and 3 deletions

View File

@@ -36,9 +36,25 @@ jobs:
matrix:
include:
- container: ghcr.io/oca/oca-ci/py3.6-odoo14.0:latest
include: "account_move_name_sequence"
makepot: "true"
name: test with Odoo
- container: ghcr.io/oca/oca-ci/py3.6-ocb14.0:latest
include: "account_move_name_sequence"
name: test with OCB
- container: ghcr.io/oca/oca-ci/py3.6-odoo14.0:latest
include: "account_sequence_option"
makepot: "true"
name: test with Odoo
- container: ghcr.io/oca/oca-ci/py3.6-ocb14.0:latest
include: "account_sequence_option"
name: test with OCB
- container: ghcr.io/oca/oca-ci/py3.6-odoo14.0:latest
exclude: "account_move_name_sequence,account_sequence_option"
makepot: "true"
name: test with Odoo
- container: ghcr.io/oca/oca-ci/py3.6-ocb14.0:latest
exclude: "account_move_name_sequence,account_sequence_option"
name: test with OCB
services:
postgres:
@@ -49,6 +65,9 @@ jobs:
POSTGRES_DB: odoo
ports:
- 5432:5432
env:
INCLUDE: "${{ matrix.include }}"
EXCLUDE: "${{ matrix.exclude }}"
steps:
- uses: actions/checkout@v2
with: