Skip to content

Commit

Permalink
run integration tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
drernie committed Jan 27, 2024
1 parent 2c83afb commit cc51b48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pkg-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
- name: Run Package Tests
run: make pkg-test

- name: Run Package Tests
run: make path-input

- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ test-all: clean compile-all check #coverage
# Create packages
#

pkg-test: compile-all
pkg-test: compile #-all
echo "$(TEST_URI)"
$(NF_BIN) run ./main.nf -profile standard -plugins $(PROJECT) --outdir "$(TEST_URI)"

pkg-fail: compile
echo "$(TEST_URI)"
$(NF_BIN) run ./fail.nf -profile standard -plugins $(PROJECT) --outdir "$(TEST_URI)"

path-input: clean compile-all
path-input: clean compile #-all
echo "$(TEST_URI)"
$(NF_BIN) run ./main.path.nf -profile standard -plugins $(PROJECT) --outdir "./results"

Expand Down

0 comments on commit cc51b48

Please sign in to comment.