Skip to content

Commit

Permalink
Create snakemake.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe-Heffer-Shef authored Oct 18, 2024
1 parent c489b50 commit ba32e09
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/snakemake.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Lint Snakemake workflow

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
test:
runs-on: ubuntu-24.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/setup-python@v5.2.0
with:
python-version: '3.12'
- run: pip install -r requirements.txt
- run: snakemake --lint

0 comments on commit ba32e09

Please sign in to comment.