-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tdayris
committed
Feb 21, 2024
1 parent
66ec709
commit a4cfa59
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout with submodules | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
fetch-depth: 0 | ||
|
@@ -25,7 +25,7 @@ jobs: | |
linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Linting | ||
uses: snakemake/[email protected] | ||
with: | ||
|
@@ -40,18 +40,18 @@ jobs: | |
- formatting | ||
steps: | ||
- name: Checkout repository with submodules | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Test workflow | ||
uses: snakemake/[email protected] | ||
with: | ||
directory: .test | ||
snakefile: workflow/Snakefile | ||
args: "--use-conda --show-failed-logs --cores 2 --conda-cleanup-pkgs cache" | ||
# - name: Test report | ||
# uses: snakemake/[email protected] | ||
# with: | ||
# directory: .test | ||
# snakefile: workflow/Snakefile | ||
# args: "--use-conda --cores 2 --report report.zip" | ||
args: "--software-deployment-method conda --show-failed-logs --cores 2 --conda-cleanup-pkgs cache" | ||
- name: Test report | ||
uses: snakemake/[email protected] | ||
with: | ||
directory: .test | ||
snakefile: workflow/Snakefile | ||
args: "--software-deployment-method conda --cores 2 --report report.zip" |