feat: add Instant Pot chicken noodle soup recipe #4
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 Recipes | |
| on: | |
| push: | |
| paths: | |
| - '**.cook' | |
| - 'config/aisle.conf' | |
| - '.github/workflows/validate.yml' | |
| pull_request: | |
| paths: | |
| - '**.cook' | |
| - 'config/aisle.conf' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install cook CLI | |
| run: | | |
| curl -L https://github.com/cooklang/cookcli/releases/latest/download/cook-x86_64-unknown-linux-gnu.tar.gz | tar xz | |
| sudo mv cook /usr/local/bin/ | |
| - name: Validate recipes | |
| run: cook doctor validate | |
| - name: Check aisle configuration | |
| run: cook doctor aisle |