chore: update .gitignore #51
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: Snakemake linting check | |
| on: | |
| push: | |
| env: | |
| PIXI_VERSION: v0.65.0 | |
| jobs: | |
| Tests: | |
| runs-on: ubuntu-latest | |
| environment: github-actions-snakemake-linting | |
| steps: | |
| - name: Checkout from GitHub | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install Pixi | |
| uses: prefix-dev/setup-pixi@14c8aabd75893f83f4ab30c03e7cf853c8208961 # v0.8.10 | |
| with: | |
| pixi-version: ${{ env.PIXI_VERSION }} | |
| cache: true | |
| - name: Run linting | |
| run: pixi run lint --check |