UBC-MDS / NiceNumber

Convert numbers to make them more human or machine readable, depending on the application.
MIT License
1 stars 2 forks source link

GitHub Actions CD #46

Closed jaymegordo closed 3 years ago

jaymegordo commented 3 years ago
  1. GitHub actions workflow for continuous deployment

rubric={mechanics:10}

Your task here is to make sure the workflow in .github/workflows/deploy.yml is correctly configured so it runs the test suite, style checkers and deplys to package to test PyPI on pushes to your project’s repository’s deployment branch (typically the main branch). At time of submission, we expect that your project successfully runs this workflow. This should be evidenced by a green release button on your package repository’s README.

A couple things you might need to change in your .github/workflows/deploy.yml file:

Ensure the deployment branch (typically the main branch) is correctly specified on lines 7 Ensure that the correct Python version is listed on line 14 (it should match the version in your pyproject.toml file)