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 95c25e9
Show file tree
Hide file tree
Showing 26 changed files with 6,067 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cargo_clippy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on: [push]
name: Clippy
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@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.73.0
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets
15 changes: 15 additions & 0 deletions .github/workflows/rustfmt.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on: [push]
name: Rust fmt
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.73.0
components: rustfmt
override: true
- uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
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 95c25e9

Please sign in to comment.