-
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (41 loc) · 1.01 KB
/
test.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: test-workflow
on: push
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.27
- name: Install dependencies
run: bun install
- name: Run JavaScript/TypeScript tests
run: bun run test
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Build Rust project
run: cargo build
shell: bash
- name: Run Clippy
run: cargo clippy --workspace --package geometry -- -D warnings
shell: bash
- name: Check Formatting
run: cargo fmt -- --check
shell: bash
- name: Run Rust tests
run: cargo test --lib
shell: bash