Skip to content

Latest commit

 

History

History
16 lines (16 loc) · 969 Bytes

checklist.md

File metadata and controls

16 lines (16 loc) · 969 Bytes

Checklist

  • Grep for "BioJuliaTemplate" and "YourName" and change the places they appear.
  • Replace the UUID in Project.toml with a freshly-generated one (using UUIDs; uuid4())
  • Generate a Documenter deploy key and secret, and upload them to your GitHub repo. See the docs of Documenter.jl to see how.
  • Visit codecov.io and get a codecov secret token. Add to your GitHub repo under secrets
  • Adjust the minimal Julia version in Project.toml, then in .github/workflows/UnitTesting.yml.
  • Update the README.md
  • Add code to the src directory
  • Add tests to the test directory
  • Add documentation to the docs directory
  • Verify docs build locally and all doctests pass
  • Trigger CI and iteratively add tests until you get good coverage
  • Optionally run Aqua.jl
  • Optionally add a PrecompileTools workload. See FASTX.jl for how to do this.
  • Optionally use JET.jl to verify your workload is type stable.