-
-
Notifications
You must be signed in to change notification settings - Fork 122
23 lines (23 loc) · 575 Bytes
/
rust.yml
File metadata and controls
23 lines (23 loc) · 575 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Rust
on:
push:
branches:
- main
paths-ignore:
- 'www/**'
pull_request:
paths-ignore:
- 'www/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@2fcdc490d667999e01ddbbf0f2823181beef6b39 # v1.15.0
with:
toolchain: stable
override: true
- name: Rust build
run: cd crates/client && cargo build --release