From fb31b19ccde98d00ba9fc077468b0ccb742fd234 Mon Sep 17 00:00:00 2001 From: Colin Marc Date: Thu, 25 Apr 2024 15:54:24 +0200 Subject: [PATCH] build: tweak tests CI job --- .github/workflows/tests.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 4c86712..61537ab 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -5,9 +5,11 @@ jobs: name: Tests runs-on: ubuntu-latest steps: - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable + - uses: dtolnay/rust-toolchain@stable + - name: install deps + run: sudo apt install nasm cmake protobuf-compiler libxkbcommon-dev + + - uses: actions/checkout@v4 - uses: swatinem/rust-cache@v2 with: workspaces: | @@ -15,11 +17,6 @@ jobs: mm-client mm-protocol - - name: install deps - run: sudo apt install nasm cmake - - - uses: actions/checkout@v2 - - name: server cargo clippy run: (cd mm-server && cargo clippy)