diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 6a827da4..edefbbb8 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -20,19 +20,13 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - name: Set-Up - run: sudo apt install -y git clang curl libssl-dev llvm libudev-dev protobuf-compiler + - name: Install linux dependencies + run: sudo apt-get install -y clang libssl-dev llvm libudev-dev protobuf-compiler - - name: Install Rustup - run: | - curl https://sh.rustup.rs -sSf | sh -s -- -y - source ~/.cargo/env - rustup default stable - rustup update nightly - rustup update stable - rustup target add wasm32-unknown-unknown --toolchain nightly + # Rust cache + - uses: Swatinem/rust-cache@v2 - name: Check Build run: |