Skip to content

Commit

Permalink
try otherwise
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonkoehn committed Oct 25, 2024
1 parent 80f24b3 commit ba068e7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test-snake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check snakefmt version
run: snakefmt --version

# Run Super-Linter only on Snakefile and .smk files
- name: Lint Snakefiles Only
Expand All @@ -30,7 +28,7 @@ jobs:
VALIDATE_SNAKEMAKE_SNAKEFMT: true
FILTER_REGEX_INCLUDE: '(^Snakefile$|.*\.smk$)' # Only include Snakefile and .smk files
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DISABLE_ERRORS: false
DISABLE_ERRORS: true

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand All @@ -51,6 +49,9 @@ jobs:
run: |
pip install -e .
pip install pytest
- name: Snakemake Linting
run: |
snakefmt workflow/
- name: Snakemake Testing
run: |
Expand Down

0 comments on commit ba068e7

Please sign in to comment.