You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Unit tests: [.github/workflows/tests.yml](https://github.com/cutlerCLI/cutler/blob/master/.github/workflows/tests.yml)
54
48
55
49
> The unit tests in the CI workflow are done using an **Apple Silicon M1 (3-core)** runner provided by GitHub Actions. See [this page](https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources) in GitHub's documentation for more information on all the runners. If the runners used in this project get outdated and don't get a bump, you may suggest one through [GitHub Issues](https://github.com/cutlerCLI/cutler/issues/new).
You can easily create a release build for cutler using the following command:
60
54
61
55
```sh
62
-
cargo build --release --verbose --locked
56
+
cargo build --release --locked
63
57
```
64
58
65
59
The major part of the release automation is currently done with [GitHub Actions]() via the [following workflow](./.github/workflows/release.yml) so, you can have a look at it to view the entire pipeline.
@@ -68,10 +62,14 @@ The unit testing is done via [this workflow.](https://github.com/cutlerCLI/cutle
68
62
69
63
### Code Formatting
70
64
71
-
`cutler`uses basic Rust formatting for code reliability and maintainability. This ensures that the codebase remains clean, readable, and consistent across different contributors.
65
+
The project uses core Rust tools to format and prettify the codebase:
0 commit comments