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: Validate pipeline | |
| on: | |
| push: | |
| jobs: | |
| test-codebase: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.14" | |
| - name: Install pip | |
| run: | | |
| python -m pip install --upgrade pip | |
| - name: Install Poetry | |
| uses: snok/install-poetry@v1 | |
| - name: Install dev dependencies | |
| run: | | |
| export PATH=$PATH:$HOME/.local/bin | |
| just install | |
| - name: Run tests and validation | |
| run: | | |
| export PATH=$PATH:$HOME/.local/bin | |
| just validate |