From fffedc1280f40a0f16a029ed624326f41c836527 Mon Sep 17 00:00:00 2001 From: Denis Roussel Date: Fri, 14 Jun 2024 14:34:29 +0200 Subject: [PATCH] [TESTS] Check warnings --- .github/workflows/test.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d26f5edaf4e9..5b4290596613 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -81,10 +81,27 @@ jobs: - name: Initialize test db run: oca_init_test_database - name: Run tests - run: oca_run_tests + id: run_tests + run: oca_run_tests 2>&1 | tee odoo.log + - name: Upload + uses: actions/upload-artifact/merge@v4 + with: + path: odoo.log - uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - name: Update .pot files run: oca_export_and_push_pot https://x-access-token:${{ secrets.GIT_PUSH_TOKEN }}@github.com/${{ github.repository }} if: ${{ matrix.makepot == 'true' && github.event_name == 'push' && github.repository_owner == 'OCA' }} + + checklog: + needs: test + runs-on: ubuntu-22.04 + name: checklog-odoo + steps: + - name: Download + uses: actions/download-artifact@v4 + - name: Check logs + run: | + pip install checklog-odoo + checklog-odoo odoo.log