From 0057f666b7942d08a4f44f1202dee8323c714814 Mon Sep 17 00:00:00 2001 From: "sijie.sun" Date: Sun, 12 Jan 2025 01:29:08 +0800 Subject: [PATCH] fix github workflow --- .github/workflows/rust.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c0063e9..f662b77 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,16 +16,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@master - - name: Checkout submodules - uses: srt32/git-actions@v0.0.3 + uses: actions/checkout@v4 with: - args: git submodule update --init --recursive - - name: Set up Clang - uses: egor-tensin/setup-clang@v1 - with: - version: latest - platform: x64 + submodules: recursive + - name: Build run: cargo build --verbose - name: Run tests