Make recency check even more lenient #78
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: nextflow.py CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
nextflow-version: | |
- "23.04.2" | |
- "22.10.8" | |
- "21.10.6" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: Install Nextflow ${{ matrix.nextflow-version }} | |
run: | | |
mkdir install | |
cd install | |
export NXF_VER=${{ matrix.nextflow-version }} | |
curl -s https://get.nextflow.io | bash | |
chmod +x nextflow | |
mv nextflow /usr/local/bin | |
cd .. | |
rm -r install | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install python-coveralls | |
pip install freezegun | |
pip install coverage==4.5.4 | |
- name: Test | |
run: | | |
python -m unittest discover tests |