From 983b6fe498d2acb95a189a768a49646f9b26e93d Mon Sep 17 00:00:00 2001 From: Kezi Date: Fri, 15 Mar 2024 21:02:40 +0100 Subject: [PATCH] Create rust.yml --- .github/workflows/rust.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..4bfeafa --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,21 @@ +name: CI +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: 'true' + - name: Install Rust for Xtensa + uses: esp-rs/xtensa-toolchain@v1.5.2 + with: + default: true + ldproxy: true + - name: Run cargo check + run: cargo check