Skip to content

Commit 65c8a5a

Browse files
authored
Merge pull request #36 from LOAMRI/develop
Develop
2 parents 9a7ea36 + 241c678 commit 65c8a5a

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.github/workflows/ci_develop.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI_develop
1+
name: ASLtk Continuous Integration for Develop Branch
22
on:
33
push:
44
branches: [ develop ]
@@ -31,6 +31,9 @@ jobs:
3131
- name: Install asltk project dependecies
3232
run: poetry install
3333

34+
- name: Run code formatting check
35+
run: poetry run task lint
36+
3437
- name: Run project tests
3538
run: poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
3639

@@ -65,6 +68,9 @@ jobs:
6568
- name: Install asltk project dependecies
6669
run: poetry install
6770

71+
- name: Run code formatting check
72+
run: poetry run task lint
73+
6874
- name: Run project tests
6975
run: poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
7076

@@ -96,6 +102,9 @@ jobs:
96102
- name: Install asltk project dependecies
97103
run: poetry install
98104

105+
- name: Run code formatting check
106+
run: poetry run task lint
107+
99108
- name: Run project tests
100109
run: poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
101110

.github/workflows/ci_main.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI_develop
1+
name: ASLtk Continuous Integration for Production Branch
22
on:
33
push:
44
branches: [ main ]
@@ -31,6 +31,9 @@ jobs:
3131
- name: Install asltk project dependecies
3232
run: poetry install
3333

34+
- name: Run code formatting check
35+
run: poetry run task lint
36+
3437
- name: Run project tests
3538
run: poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
3639

@@ -65,6 +68,9 @@ jobs:
6568
- name: Install asltk project dependecies
6669
run: poetry install
6770

71+
- name: Run code formatting check
72+
run: poetry run task lint
73+
6874
- name: Run project tests
6975
run: poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
7076

@@ -96,6 +102,9 @@ jobs:
96102
- name: Install asltk project dependecies
97103
run: poetry install
98104

105+
- name: Run code formatting check
106+
run: poetry run task lint
107+
99108
- name: Run project tests
100109
run: poetry run task test --cov-report=xml --ignore-glob='./asltk/scripts/*.py'
101110

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Documentation Stable](https://readthedocs.org/projects/asltk/badge/?version=main)](https://asltk.readthedocs.io/en/main/?badge=main)
44
[![codecov](https://codecov.io/gh/LOAMRI/asltk/graph/badge.svg?token=1W8GQ7SLU9)](https://codecov.io/gh/LOAMRI/asltk)
5-
![CI_main](https://github.com/LOAMRI/asltk/actions/workflows/ci_main.yaml/badge.svg)
5+
[![CI_main](https://github.com/LOAMRI/asltk/actions/workflows/ci_main.yaml/badge.svg)](https://github.com/LOAMRI/asltk/actions/workflows/ci_main.yaml)
66
[![CI_develop](https://github.com/LOAMRI/asltk/actions/workflows/ci_develop.yaml/badge.svg)](https://github.com/LOAMRI/asltk/actions/workflows/ci_develop.yaml)
77
![Python Versions](https://img.shields.io/badge/python-3.9%20|+-blue)
88
![PyPI downloads](https://img.shields.io/pypi/dm/asltk)

0 commit comments

Comments
 (0)