diff options
author | Johannes Stölp <johannes.stoelp@gmail.com> | 2021-05-31 23:38:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-31 23:38:22 +0200 |
commit | 1cafdd6bc63442040060d0efd1c4d1218808f426 (patch) | |
tree | 24bf6106ace34aef7079091a7dd2fa53ce37c39e /.github | |
parent | 0695821a1da52cdaf74f17ff722c46b62d211438 (diff) | |
download | mini-kvm-rs-1cafdd6bc63442040060d0efd1c4d1218808f426.tar.gz mini-kvm-rs-1cafdd6bc63442040060d0efd1c4d1218808f426.zip |
added gh action
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/rust.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..a803315 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Build examples + run: cargo build --verbose --examples + - name: Run tests + run: cargo test --verbose |