nf-core_modules/.github/workflows/pytest-workflow.yml
Edmund Miller 474a6fad64
ci: Add python setup
Cause apparently you can use an action inside of an action. Yet.
2021-01-24 10:33:44 -06:00

23 lines
564 B
YAML

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: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Nextflow pytest-workflow
uses: Emiller88/pytest-workflow-composite-action@master
with:
pytest_tags: 'fastqc'
nxf_version: ${{ matrix.nxf_version }}