Skip to content

Commit

Permalink
Merge pull request #5 from treangenlab/nsapoval-CI
Browse files Browse the repository at this point in the history
Added basic test action
  • Loading branch information
nsapoval authored Mar 25, 2024
2 parents e14421a + 443fa3a commit 88b4a0b
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Run basic tests for Lemur

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
test:
name: Test Lemur executable
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v3
- name: Setup Miniconda
uses: conda-incubator/[email protected]
with:
environment-file: ./lemur.yml
activate-environment: lemur-env
python-version: 3.9

- name: Run Lemur
run: ./lemur -i ./examples/example-data/example.fastq
-o ./examples/example-output
-d ./examples/example-db
--tax-path ./examples/example-db/taxonomy.tsv
-r species
--verbose > ./examples/example-output/example.log 2>&1;

- name: Check that output was produced
id: check_files
uses: andstor/[email protected]
with:
files: "./examples/example-output/P_rgs_df.tsv, ./examples/example-output/relative_abundance.tsv, ./examples/example-output/relative_abundance-species.tsv"
fail: true

- name: Check if outputed profile matches reference
uses: LouisBrunner/[email protected]
with:
old: ./examples/example-output-ref/relative_abundance.tsv
new: ./examples/example-output/relative_abundance.tsv
mode: strict
tolerance: same
output: ./examples/example-output/relative_abundance_diff.txt

- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: lemur-out-log
path: ./examples/example-output/*
retention-days: 5

0 comments on commit 88b4a0b

Please sign in to comment.