Skip to content

Commit 3112430

Browse files
committed
feat: import priori workspace under MIT
0 parents  commit 3112430

36 files changed

Lines changed: 15238 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
pull_request:
7+
8+
jobs:
9+
checks:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
15+
- name: Install Rust
16+
uses: dtolnay/rust-toolchain@stable
17+
with:
18+
components: rustfmt, clippy
19+
20+
- name: Cache cargo
21+
uses: Swatinem/rust-cache@v2
22+
23+
- name: Format check
24+
run: cargo fmt --all --check
25+
26+
- name: Lint
27+
run: cargo clippy --workspace --all-targets -- -D warnings
28+
29+
- name: Test
30+
run: cargo test --workspace

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)