chore(deps): update actions/checkout action to v6 (#31) #99
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: "generate" | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: jdx/mise-action@v3 | |
| - name: Generate project and run tests | |
| run: | | |
| brew install cookiecutter | |
| cookiecutter --no-input -f . | |
| mise install | |
| swift test |