Skip to content

Commit

Permalink
Merge pull request #56 from RasmussenLab/cicd_update
Browse files Browse the repository at this point in the history
Cicd update
  • Loading branch information
Henry Webel authored May 3, 2024
2 parents 641714e + acff633 commit f069908
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
run: |
conda info
conda list
conda info -e
conda env export --from-history --no-builds > environment.yml
conda env export --no-builds
conda env export --no-builds > environment_w_versions.yml
- name: test-r-kernel-imports
run: |
Rscript -e "library(stringi)"
Expand Down Expand Up @@ -78,6 +80,15 @@ jobs:
cd project
snakemake -p -c1 -n --configfile config/single_dev_dataset/example/config.yaml
snakemake -p -c4 -k --configfile config/single_dev_dataset/example/config.yaml
- name: Archive results
# https://github.com/actions/upload-artifact
uses: actions/upload-artifact@v3
with:
name: example-workflow-results-${{ matrix.os }}
path: |
project/runs/example/
environment.yml
environment_w_versions.yml
run-unit-local-pip-installation:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit f069908

Please sign in to comment.