neurospin / pylearn-parsimony

Structured Machine Learning in Python
BSD 3-Clause "New" or "Revised" License
45 stars 16 forks source link

Use continuous integration to run tests on each commit #29

Open DimitriPapadopoulos opened 6 years ago

DimitriPapadopoulos commented 6 years ago

For example use Travis.

mathurinm commented 1 year ago

You can use GithubActions. It's quite straightforward to implement, you just need to add a yml file in .github/workflows; have a look at the workflow we use in skglm for example :

https://github.com/scikit-learn-contrib/skglm/blob/main/.github/workflows/main.yml

DimitriPapadopoulos commented 1 year ago

Indeed, GitHub Actions didn't exist at the time.