Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyko committed Aug 29, 2023
0 parents commit ed3c595
Show file tree
Hide file tree
Showing 20 changed files with 1,998 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
push:
pull_request:

concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

jobs:
check:
name: Lint, Format, and Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Cache Cargo
uses: Swatinem/rust-cache@v1

- uses: r7kamura/rust-problem-matchers@v1

- name: Setup Rust
uses: dtolnay/rust-toolchain@stable

- name: Run Formatter
run: cargo fmt --all -- --check

- name: Run Clippy
run: cargo clippy --all -- -D warnings

- name: Build
run: cargo build --release --all-features
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit ed3c595

Please sign in to comment.