Merge pull request #56 from coyoteclan/patch-1 #115
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 themes | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - 'themes.toml' | |
| pull_request: | |
| paths: | |
| - 'themes.toml' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: iffy/install-nim@v5 | |
| - run: nimble install -d -y | |
| - run: nimble c -r validate_themes.nim |