Skip to content

Commit

Permalink
refactor: generic extension (#218)
Browse files Browse the repository at this point in the history
Co-authored-by: Tin Chung <56880684+chungquantin@users.noreply.github.com>
  • Loading branch information
evilrobot-01 and chungquantin authored Sep 6, 2024
1 parent 8d1c085 commit 479dbb0
Show file tree
Hide file tree
Showing 39 changed files with 3,483 additions and 1,097 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: ci

on:
push:
branches: [main]
branches: [ main ]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
types: [ opened, synchronize, reopened, ready_for_review ]

jobs:
lint:
Expand All @@ -13,7 +13,9 @@ jobs:
- uses: actions/checkout@v4

- name: Check formatting
run: cargo +stable fmt --all -- --check
run: |
rustup toolchain install nightly --profile minimal --component rustfmt
cargo +nightly fmt --all -- --check
check:
needs: lint
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@
.idea

# Binaries
**/bin/
**/bin/

# Cargo.lock
**/Cargo.lock
Loading

0 comments on commit 479dbb0

Please sign in to comment.