Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gaku-sei committed Oct 29, 2023
0 parents commit 9a18518
Show file tree
Hide file tree
Showing 26 changed files with 6,057 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/cargo_clippy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: push
name: Clippy

env:
RUSTFLAGS: "-Dwarnings"

jobs:
clippy:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo apt-get install -y libgtk-3-dev libsoup-3.0-dev libjavascriptcoregtk-4.1-dev webkit2gtk-4.1-dev
- uses: actions/checkout@v4
- run: cargo clippy --all-targets --all-features
9 changes: 9 additions & 0 deletions .github/workflows/rustfmt.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
on: push
name: Rust fmt

jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/.vscode
/target
*.cbz
*.epub
*.jpg
*.pdf
Loading

0 comments on commit 9a18518

Please sign in to comment.