Implementation: Spiral Matrix #1250
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: Generator | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| generator: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - run: bin/fetch-configlet | |
| - run: bin/configlet sync || true | |
| - name: Install Raku | |
| uses: Raku/setup-raku@v1 | |
| - run: zef install --/test App::Prove6 | |
| - run: zef install --/test --deps-only . | |
| - name: Test generator | |
| run: prove6 t/generator | |
| - name: Generated files match generator output | |
| run: prove6 t/files |