From 8c12a835d7d05617c1493764c148d18654672555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A2ris=20DOUADY?= Date: Sat, 30 Nov 2024 09:35:17 +0100 Subject: [PATCH] Add github ci --- .github/workflows/rust-check.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/rust-check.yml diff --git a/.github/workflows/rust-check.yml b/.github/workflows/rust-check.yml new file mode 100644 index 0000000..828ec68 --- /dev/null +++ b/.github/workflows/rust-check.yml @@ -0,0 +1,28 @@ +name: rust-build + +on: + push: + branches: + - '*' + pull_request: + branches: + - master + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repo + uses: actions/checkout@v2 + with: + submodules: true + - name: Install Rust + uses: hecrj/setup-rust-action@v2 + with: + rust-version: 'stable' + - name: Check + run: cargo check --verbose --tests --examples + - name: Run tests + run: cargo test --verbose \ No newline at end of file