fixes the status column on RHOSO tab #693
Workflow file for this run
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
| name: Check poetry | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Check poetry configuration | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - uses: Gr1N/setup-poetry@v9 | |
| - name: verify poetry instalation | |
| run: poetry --version | |
| working-directory: ./backend | |
| - name: verify poetry configuration | |
| run: poetry check | |
| working-directory: ./backend |