Skip to content

Commit 8d1715b

Browse files
committed
Finish v0.1.0
0 parents  commit 8d1715b

17 files changed

+1873
-0
lines changed

.github/workflows/ci.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Rust
2+
permissions:
3+
contents: read
4+
pull-requests: write
5+
6+
on:
7+
push:
8+
branches: [ "main", "develop" ]
9+
pull_request:
10+
branches: [ "main", "develop" ]
11+
release:
12+
types: [ published ]
13+
14+
env:
15+
CARGO_TERM_COLOR: always
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- uses: actions/checkout@v4
23+
- name: Install Rust toolchain
24+
uses: actions-rs/toolchain@v1
25+
with:
26+
toolchain: stable
27+
components: rustfmt, clippy
28+
override: true
29+
- name: Check formatting
30+
run: cargo fmt -- --check
31+
- name: Run clippy
32+
run: cargo clippy -- -D warnings
33+
- name: Build
34+
run: cargo build --verbose
35+
- name: Run tests
36+
run: cargo test --verbose

.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)