From 37206f23f8e8d28d7da1ca15575391cc4763825e Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 10 Apr 2023 11:15:03 -0700 Subject: [PATCH] Added action --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..f7a9d25 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +on: [push] + +name: CI + +jobs: + build_and_test: + name: Daisy + runs-on: debian-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - uses: actions-rs/cargo@v1 + with: + command: build + args: --release --all-features \ No newline at end of file