From b53c7dd30dfc4eb1bf9a5cd16fc1f7914a93164f Mon Sep 17 00:00:00 2001 From: Raymon Zutekouw <40148684+Raymonzut@users.noreply.github.com> Date: Fri, 7 Jan 2022 16:51:30 +0100 Subject: [PATCH] Add GitHub CI --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..267bf46 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: MBLF CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - uses: icepuma/rust-action@master + with: + args: cargo fmt -- --check && cargo clippy -- -Dwarnings && cargo test