├── .github ├── FUNDING.yml └── workflows │ ├── mean_bean_ci.yml │ └── mean_bean_deploy.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── ci ├── build.bash ├── common.bash ├── set_rust_version.bash └── test.bash └── src └── main.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/mean_bean_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/.github/workflows/mean_bean_ci.yml -------------------------------------------------------------------------------- /.github/workflows/mean_bean_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/.github/workflows/mean_bean_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/README.md -------------------------------------------------------------------------------- /ci/build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/ci/build.bash -------------------------------------------------------------------------------- /ci/common.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/ci/common.bash -------------------------------------------------------------------------------- /ci/set_rust_version.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/ci/set_rust_version.bash -------------------------------------------------------------------------------- /ci/test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XAMPPRocky/mean-bean-ci-template/HEAD/ci/test.bash -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | //! Empty binary just to test building. 2 | fn main() {} 3 | --------------------------------------------------------------------------------