Skip to content

Commit

Permalink
Merge b2e5a15 into 0fbe6ac
Browse files Browse the repository at this point in the history
  • Loading branch information
gibsramen committed Jun 7, 2021
2 parents 0fbe6ac + b2e5a15 commit aa47f5c
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,48 @@
# much of this is taken from the Empress main.yml file
name: Main CI

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0

- name: Download Q2 file
run: wget -q https://raw.githubusercontent.com/qiime2/environment-files/master/latest/staging/qiime2-latest-py36-linux-conda.yml

- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: q2
environment-file: qiime2-latest-py36-linux-conda.yml

- name: Install conda reqs
shell: bash -l {0}
run: conda install --file ci/conda_requirements.txt -c biocore

- name: Install auxillary CI packages
shell: bash -l {0}
run: conda install -c conda-forge coveralls flake8 nose

- name: Install gemelli
shell: bash -l {0}
run: pip install -e .

- name: Check style
shell: bash -l {0}
run: flake8 gemelli/*.py gemelli/tests/*.py setup.py

- name: Run tests & coverage
shell: bash -l {0}
run: nosetests -v gemelli --with-coverage --cover-package=gemelli
Empty file removed Icon
Empty file.

0 comments on commit aa47f5c

Please sign in to comment.