Skip to content

Refactor the whole lock script #34

Refactor the whole lock script

Refactor the whole lock script #34

Workflow file for this run

name: Rust
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: "true"
- name: Install llvm
run: sudo apt update && sudo apt install -y clang llvm clang-format lld
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Prepare, build, test, clippy, format
run: make prepare build test clippy fmt
- name: git diff
run: git diff --exit-code