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).
This commit is contained in:
Colin Walters 2021-03-17 17:23:47 +00:00
parent c52a2ff52e
commit 26166bb8e3

27
.github/workflows/tests.yml vendored Normal file
View File

@ -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