Add OSO Tab with Jobs API Integration and Table Rendering in Frontend #680
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 |