From: Colin Walters Date: Thu, 8 Apr 2021 17:01:03 +0000 (+0000) Subject: ci: Add GH action to build X-Git-Tag: archive/raspbian/2022.4-1+rpi1^2~9^2^2~20^2~75 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9bb0dd3c4d0cab0827179cd58f82f8ff0f47e964;p=ostree.git ci: Add GH action to build --- diff --git a/rust-bindings/rust/.github/workflows/rust.yml b/rust-bindings/rust/.github/workflows/rust.yml new file mode 100644 index 00000000..f6ae8faf --- /dev/null +++ b/rust-bindings/rust/.github/workflows/rust.yml @@ -0,0 +1,23 @@ +name: Rust + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + container: quay.io/cgwalters/fcos-buildroot + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose