Skip to content

Commit

Permalink
Update check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger authored Sep 24, 2023
1 parent a93d3b4 commit 763320c
Showing 1 changed file with 7 additions and 16 deletions.
23 changes: 7 additions & 16 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,26 @@ on:
jobs:
check:
runs-on:
labels: ubuntu-latest
labels: movement-runner

steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
submodules: 'recursive'

- name: Install build essentials
run: sudo apt-get update && sudo apt-get install -y build-essential

- name: Print Linker Version
run: ld --version

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.70

- name: Install build essentials
run: sudo apt-get update && sudo apt-get install -y build-essential

- name: Cache cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}-v4

- name: Cache cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }}-v4

- name: Run Cargo Check
working-directory: ./m1
run: cargo check
Expand Down

0 comments on commit 763320c

Please sign in to comment.