Skip to content

Commit

Permalink
Prepare for v2
Browse files Browse the repository at this point in the history
- Switch backend db from sled to sqlite
- Support multiple playlists
- Enhance search by both channel name and playlist name
  • Loading branch information
vihu committed Apr 8, 2024
1 parent fdbe159 commit 4cd4ac1
Show file tree
Hide file tree
Showing 17 changed files with 1,482 additions and 209 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,17 @@ jobs:
- name: Setup | Rust cache
uses: Swatinem/rust-cache@v2

- name: Setup | Just
uses: extractions/setup-just@v2

- name: Hygiene | Formatting
run: cargo fmt -- --check
run: just fmt

- name: Hygiene | Clippy
run: cargo clippy -- -Dclippy::all -Dwarnings
run: just clippy

- name: Hygiene | Test
run: just test

- name: Hygiene | Build
run: just build-dev
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@
!.github
!.github/*
!.github/**/*
!migrations
!migrations/*
Loading

0 comments on commit 4cd4ac1

Please sign in to comment.