I've enabled GH Actions - the relevant files are in .github/workflows. We need to start looking at the CI/CD pipeline. For now, I think that would consist of:
Run all tests using pytest
Confirm code is formatted correctly according to the black tool
I'm inclined to not worry about packaging as of yet since we'll want to decide what that looks like (source only wheel, compiled wheels of some kind, source only package, etc).
Also #9 is likely related since that'll allow us to give aliases to these tasks and use them within the build scripts.
I've enabled GH Actions - the relevant files are in
.github/workflows
. We need to start looking at the CI/CD pipeline. For now, I think that would consist of:black
toolI'm inclined to not worry about packaging as of yet since we'll want to decide what that looks like (source only wheel, compiled wheels of some kind, source only package, etc).
Also #9 is likely related since that'll allow us to give aliases to these tasks and use them within the build scripts.