From 7f4d7a19377beba314c617e94fb2f3aa0ab10a0b 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 | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d26f5edaf4e9..0efd3f90cbb0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -81,10 +81,25 @@ 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 ${{ env.RUN_UNIQUE_ID }}_artifact_${{ matrix.step }}.log + - name: Upload + uses: actions/upload-artifact@v4 + with: + name: ${{ env.RUN_UNIQUE_ID }}_artifact_${{ matrix.step }}.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: + runs-on: ubuntu-22 + name: checklog-odoo + steps: + - name: checklog + uses: actions/download-artifact@v4 + run: | + pip install checklog-odoo + checklog-odoo ${{join(*.log)}}