...
- Full check of Pull Requests
- Static analysis via `cargo check` and `cargo clippy`
- Builds via `cargo build` and `cargo build --release`
- Tests via `cargo test` and `cargo bench`
- Documentation generation by `cargo doc`
- Docker debug build (Dockerfile.debug)
- Docker release build (Dockerfile)
- Full check for "master" (the main branch (it is
iroha2-dev
for now)- Static analysis via `cargo check` and `cargo clippy`
- Builds via `cargo build` and `cargo build --release`
- Tests via `cargo test` and `cargo bench`
- Regression comparison of `cargo bench` results via `criterion` and automatic issues creation if found (without pipeline failure)
- Documentation generation by `cargo doc`
- Docker build (debug + release)
- Publishing of artifacts artefacts for "tags"
- Code coverage (tarpauline)
- Benchmarks results as HTML (better to be also deployed as a static page) via criterion https://bheisler.github.io/criterion.rs/book/user_guide/html_report.html
- Builds via `cargo build --release` as GitHub artifactsartefacts
- Builds via `cargo publish` as Crates.io crate
- Documentation publishing on docs.rs (better to be also deployed as a static page) via `cargo publish`
- Docker image publish to hub.docker.com (with the latest tag)
- Additional testing for "master"
- Deployment on K8S cluster via https://kompose.io/
- Run of integration tests (TBD by Iroha team)
- Automatic issue creation on fails
...