From 72964d06e32834325520e6eb9c8ea32480e8ec6a Mon Sep 17 00:00:00 2001 From: ngutech21 Date: Mon, 8 Jan 2024 10:45:58 +0100 Subject: [PATCH] chore: run itests in gh action --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ea310880..cb4f6216 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,10 +16,14 @@ jobs: - uses: actions/checkout@v3 - name: Install protobuf-compiler run: sudo apt-get update && sudo apt-get install -y protobuf-compiler + - name: Install just + run: cargo install just - name: Build run: cargo build --verbose - name: Run tests run: cargo test --verbose + - name: Run itests + run: just run-itests coverage: runs-on: ubuntu-latest name: coverage