feat(prompts): update check-module-versions task to use CSV and add m… #1438
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Clone taskfile | |
| run: ./task clone-taskfile | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Run task install | |
| run: ./task install | |
| env: | |
| ODOO_REVISION: "18.0" | |
| - name: Run task test-project | |
| run: ./task test-project | |
| env: | |
| ODOO_REVISION: "18.0" |