chore: align mojo-ini with mojo 1.0 beta migration #5
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: Validate Recipe | |
| on: | |
| push: | |
| paths: | |
| - 'packaging/recipe.yaml' | |
| pull_request: | |
| paths: | |
| - 'packaging/recipe.yaml' | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: prefix-dev/setup-pixi@v0.9.3 | |
| with: | |
| pixi-version: v0.37.0 | |
| - name: Install rattler-build | |
| run: pixi global install rattler-build | |
| - name: Validate recipe schema | |
| run: | | |
| pixi exec rattler-build build \ | |
| --recipe packaging/recipe.yaml \ | |
| --channel conda-forge \ | |
| --channel https://conda.modular.com/max \ | |
| --channel https://prefix.dev/modular-community \ | |
| --render-only | |
| env: | |
| RATTLER_BUILD_COLOR: always |