Skip to content

Commit 50968f4

Browse files
authored
Create rust.yml
1 parent ebe8b45 commit 50968f4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/rust.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: macos-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Install Rust
12+
run: rustup install stable
13+
- name: Build Core
14+
run: cd core && cargo build
15+
- name: Test Core
16+
run: cd core && cargo test
17+
- name: Build CLI
18+
run: cd cli && cargo build

0 commit comments

Comments
 (0)