ci: Add universal CI Test

This commit is contained in:
Edmund Miller 2021-01-22 13:32:54 -06:00
parent f05134e855
commit 95270092b0
No known key found for this signature in database
GPG key ID: BD387FF7BC10AA9D

19
.github/workflows/pytest-workflow.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: Pytest-workflow
on: [push, pull_request]
jobs:
ci_test:
runs-on: ubuntu-latest
name: CI Test
strategy:
matrix:
nxf_version: [20.11.0-edge]
env:
NXF_ANSI_LOG: false
steps:
- uses: actions/checkout@v2
- name: Nextflow pytest-workflow
uses: Emiller88/pytest-workflow-composite-action@v0.1
with:
pytest_tags: 'fastqc'
nxf_version: ${{ matrix.nxf_version }}