feat: add script to allow the CLI to work without pip install #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 2 | |
strategy: | |
matrix: | |
python-version: ["3.9"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: Install nextflow | |
uses: nf-core/setup-nextflow@v1 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip install .[dev,test] | |
- name: Check out-of-the-box CLI script | |
run: | | |
bash bin/tool_name --help | |
- name: Check CLI flags | |
run: | | |
tool_name --help | |
tool_name --version | |
tool_name --citation | |
- name: Test stub run | |
run: | | |
tool_name run -profile ci_stub,docker -stub |