From a2854297b3c0d103cc52992865ec608602311b0b Mon Sep 17 00:00:00 2001 From: Stephen Date: Mon, 15 Nov 2021 20:32:43 -0800 Subject: [PATCH] Create ci.yaml --- .github/workflows/ci.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000000..71a343f7bf --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,14 @@ +name: CI +on: + push: + branches: [main] + pull_request: + branches: [main] +jobs: + build: + runs-on: macOS-latest + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Build and Test + run: make install_rust && make install_cargo_make && cargo make install_targets