readded grid variables until we can properly refactor sgrid #6
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: Linting | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| name: linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Pixi Environment | |
| uses: prefix-dev/setup-pixi@v0.10.0 | |
| with: | |
| cache: true | |
| manifest-path: py_gnome/pixi.toml | |
| environments: dev312 | |
| - name: Lint | |
| working-directory: py_gnome | |
| # continue-on-error: true | |
| run: pixi run lint |