Add an example of LVMT to LvmtStorage
struct
#47
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: rust:latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
apt-get update | |
apt-get install -y curl wget libclang-dev | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Set up Rust fmt version | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly-2024-02-04-x86_64-unknown-linux-gnu | |
- name: Install rustfmt | |
run: rustup component add --toolchain nightly-2024-02-04-x86_64-unknown-linux-gnu rustfmt | |
- name: Install dependencies | |
run: rustup target add x86_64-unknown-linux-gnu | |
- name: Run tests | |
run: bash ./dev_support/test.sh |