Add CI #10
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
For the starting point of a continuous integration pipeline, I'd like to have jobs that do this:
cargo buildorcargo check; the project is small enough that we canbuildevery time.cargo testcargo fmt -- --checknot to reformat, but to check that one doesn't commit inconsistently-formatted codecargo clippyLater:
cargo testcargo-deny- Checks that there are no dependencies with published vulnerabilities, and can do checks for license compatibility.cargo docto have documentation on the internals. This is nice for newcomers to browse.I'm open to all this, but as I'm still pretty new to Rust, I'll need some guidance on how to get these processes set up.
I'm doing deploys manually right now, so I definitely want to learn how to automate that flow.