14
14
runs-on : ubuntu-latest
15
15
name : Detect unreleased dependencies
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v4
18
18
- run : |
19
19
for reqfile in requirements.txt test-requirements.txt ; do
20
20
if [ -f ${reqfile} ] ; then
@@ -35,15 +35,19 @@ jobs:
35
35
fail-fast : false
36
36
matrix :
37
37
include :
38
+ <<<<<<< before updating
38
39
- container : ghcr.io/oca/oca-ci/py3.6-odoo12.0:latest
39
40
# See: See: https://github.com/OCA/server-ux/pull/654
40
41
exclude : " base_import_security_group,base_duplicate_security_group"
41
42
makepot : " true"
42
43
name : test with Odoo
44
+ =======
45
+ >>>>>>> after updating
43
46
- container : ghcr.io/oca/oca-ci/py3.6-ocb12.0:latest
44
47
# See: See: https://github.com/OCA/server-ux/pull/654
45
48
exclude : " base_import_security_group,base_duplicate_security_group"
46
49
name : test with OCB
50
+ makepot : " true"
47
51
services :
48
52
postgres :
49
53
image : postgres:9.6
57
61
INCLUDE : " ${{ matrix.include }}"
58
62
EXCLUDE : " ${{ matrix.exclude }}"
59
63
steps :
60
- - uses : actions/checkout@v2
64
+ - uses : actions/checkout@v4
61
65
with :
62
66
persist-credentials : false
63
67
- name : Install addons and dependencies
70
74
run : oca_init_test_database
71
75
- name : Run tests
72
76
run : oca_run_tests
73
- - uses : codecov/codecov-action@v1
77
+ - uses : codecov/codecov-action@v4
78
+ with :
79
+ token : ${{ secrets.CODECOV_TOKEN }}
74
80
- name : Update .pot files
75
81
run : oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN }}@github.com/${{ github.repository }}
76
82
if : ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'OCA' }}
0 commit comments