vmexec 0.1.5

Run a single command in a speedy virtual machine with zero-setup
image: "archlinux:latest"

before_script:
  - pacman -Syu --needed --noconfirm rust cargo-audit pkgconf

stages:
  - lint
  - test

format:
  stage: lint
  script:
    - cargo fmt --all -- --check

clippy:
  stage: lint
  script:
    - cargo clippy --all -- -D warnings

audit:
  stage: lint
  script:
    - cargo audit

test:
  stage: test
  script:
    - cargo test --all --release