-
Notifications
You must be signed in to change notification settings - Fork 64
32 lines (29 loc) · 834 Bytes
/
rust.yml
File metadata and controls
32 lines (29 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Add rustfmt and clippy
run: rustup component add rustfmt clippy
- name: Install node dependencies
run: yarn
- name: Expand liquid
run: CI=1 yarn expand-liquid rust
- name: Run cargo fmt
run: cargo fmt --check
- name: Run clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test
- name: Add wasm32-wasip1 target
run: rustup target add wasm32-wasip1
- name: Build with wasm32-wasip1 target
run: cargo build --release --target wasm32-wasip1