From 732ac0092a6d65b67acfd6b3054f3552f3ef030a Mon Sep 17 00:00:00 2001 From: Joel Wachsler Date: Sun, 10 Jul 2022 15:19:26 +0000 Subject: [PATCH] Add pipeline --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..9a6dded --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +on: + - push +jobs: + check: + name: Rust project + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + - name: Install latest stable + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + components: rustfmt, clippy + + - name: Run cargo check + uses: actions-rs/cargo@v1 + with: + command: check + \ No newline at end of file