From: Colin Walters Date: Wed, 17 Mar 2021 17:23:47 +0000 (+0000) Subject: ci: Add a Github Action for Rust for tests/inst X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~5^2~5^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=26166bb8e360927a0ff3eade91a5a687f1f8deaa;p=ostree.git ci: Add a Github Action for Rust for tests/inst Let's dip our toes in GH Actions (specifically aiming to migrate away from Travis). --- diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 00000000..42eaac83 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,27 @@ +--- +name: Rust +on: + push: + branches: [master] + pull_request: + branches: [master] + +env: + CARGO_TERM_COLOR: always + ACTIONS_LINTS_TOOLCHAIN: 1.50.0 + +jobs: + linting: + name: "Lints, pinned toolchain" + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Install toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: ${{ env['ACTIONS_LINTS_TOOLCHAIN'] }} + default: true + components: rustfmt, clippy + - name: cargo fmt (check) + run: cd tests/inst && cargo fmt -- --check -l