ryanwersal / crosswind

Convert between Python 2 and 3 in both directions (fork of lib3to2)
Other
12 stars 1 forks source link

Create initial CI/CD pipeline using GitHub Actions #11

Closed ryanwersal closed 5 years ago

ryanwersal commented 5 years ago

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:

  1. Run all tests using pytest
  2. 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.

ryanwersal commented 5 years ago

Done aside from confirming code is formatted correctly.

ryanwersal commented 5 years ago

Done.