generated from microsoft/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (54 loc) · 1.71 KB
/
test.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# This pipeline checks whether the package
# installs properly, passes unit tests and whether
# the code formatting is right.
name: CI/CD (Poetry + Conda)
on:
push:
branches: [ main ] # Or your main branch name
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run black formatting check
uses: psf/black@stable
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: conda-forge, bioconda
environment-file: environment.yml
activate-environment: sr2silo
- name: Install Poetry
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate sr2silo
conda install -c conda-forge poetry
- name: Install the module
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate sr2silo
poetry install --with dev --no-interaction
- name: Run unit tests
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate sr2silo
poetry run pytest
- name: Run Ruff
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate sr2silo
poetry run ruff check .
- name: Run interrogate
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate sr2silo
poetry run interrogate src
- name: Run Pyright
run: |
source $(conda info --base)/etc/profile.d/conda.sh
conda activate sr2silo
poetry run pyright