continuous-testing 0.2.2

A continuous testing tool
# Rust template

> For rust user

```bash
git clone https://github.com/taishingi/continuous-template continuous
```

```bash
cd continuous/rust 
```

> Edit providers scripts

```bash
vim stable.sh
```

```bash
vim beta.sh
```

```bash
vim nightly.sh 
```

```bash
packer validate rust.json 
```

```bash
packer hcl2_upgrade -with-annotations  rust.json 
```

```bash
packer build rust.json.pkr.hcl
```

> .git/hooks/post-commit

```bash
#!/bin/bash

unset GIT_DIR
git push origin --all
git push origin --tags
cd continuous/rust
packer validate rust.json
packer hcl2_upgrade -with-annotations rust.json
packer build rust.json.pkr.hcl
```