Skip to content

Commit c85c407

Browse files
committed
tests: add tests with github actions
1 parent 8c3a428 commit c85c407

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.github/workflows/tests.yaml

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: tests
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- "README.md"
7+
- "docs/**"
8+
- "CHANGELOG.md"
9+
10+
pull_request:
11+
paths-ignore:
12+
- "README.md"
13+
- "docs/*"
14+
- "CHANGELOG.md"
15+
16+
jobs:
17+
build_cpu:
18+
runs-on: ubuntu-latest
19+
# https://github.com/marketplace/actions/setup-miniconda#use-a-default-shell
20+
defaults:
21+
run:
22+
shell: bash -l {0}
23+
24+
strategy:
25+
matrix:
26+
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
27+
steps:
28+
- name: Checkout repository
29+
uses: actions/checkout@v3
30+
# See: https://github.com/marketplace/actions/setup-miniconda
31+
- name: Setup miniconda
32+
uses: conda-incubator/setup-miniconda@v2
33+
with:
34+
auto-update-conda: true
35+
miniforge-variant: Mambaforge
36+
conda-channels: conda-forge
37+
python-version: ${{ matrix.python-version }}
38+
use-mamba: true
39+
- name: Install BioPandas
40+
run: pip install -e .
41+
- name: Install Dev Dependencies
42+
run: pip install mmtf-python numpy scipy pandas pytest looseversion importlib_resources
43+
- name: Run unit tests and generate coverage report
44+
run: pytest -s -

0 commit comments

Comments
 (0)