It's require Vagrant and Virtualbox installed on your system.
bash
cargo install continuous-testing
```yaml
directory: Encore # The tmp directory os: archlinux/archlinux # The box to use memory: 4096 # Memory to use cpus: 8 # Cpus to use beforeinstall: # To update he system - pacman -Syyu --noconfirm install: # Install dependencies - pacman -Syyu gtk4 pango base base-devel git rustup --noconfirm afterinstall: # Command to run after installation - rustup --version beforescript: # Get the repository - git clone https://github.com/taishingi/zuu - cd zuu || exit 1 script: # Test Commands - cargo build - cargo test aftersuccess: - echo "success" # Todo on success afterfailure: - echo "failure" # Todo on failure channels: # All rustup channels to checks - stable - beta - nightly badgesoutput: assets/badges # The badge output dir badges_style: flatsquare # The badge style ```
STRUCTURE
sh
.
├──src
│ └── lib.rs
├──specs
│ ├── continuous.yml
│ └── README.md
├── Cargo.toml
├── LICENSE
└── README.md
sh
encore