-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (41 loc) · 1.23 KB
/
github_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: integration tests & code style
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2
with:
channels: conda-forge, bioconda
channel-priority: strict
mamba-version: "*"
activate-environment: phylophiller
environment-file: environment.yml
auto-update-conda: false
#- name: Install dependencies
# run: |
# # $CONDA is an environment variable pointing to the root of the miniconda directory
# $CONDA/bin/mamba env update --file environment.yml --name base
- name: Lint with flake8
run: |
$CONDA/bin/flake8 phylofiller/
- name: run python tests
run: |
$CONDA/bin/nosetests phylofiller --with-doctest --with-coverage
- name: convert coverage
run: |
$CONDA/bin/coverage lcov
- name: send coverage report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "coverage.lcov"