├── .github └── workflows │ ├── check-and-lint.yaml │ ├── release-packaging.yaml │ └── test.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE.md ├── README.md └── src ├── lib.rs └── main.rs /.github/workflows/check-and-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/.github/workflows/check-and-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/release-packaging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/.github/workflows/release-packaging.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BamPeers/rust-ci-github-actions-workflow/HEAD/src/main.rs --------------------------------------------------------------------------------