Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
with:
toolchain: "1.88.0"
- uses: Swatinem/rust-cache@v2
- run: mkdir -p dist
- run: cargo check

fmt:
Expand All @@ -43,6 +44,7 @@ jobs:
toolchain: "1.88.0"
components: clippy
- uses: Swatinem/rust-cache@v2
- run: mkdir -p dist
- run: cargo clippy -- -D warnings

test:
Expand Down Expand Up @@ -71,6 +73,7 @@ jobs:
with:
toolchain: "1.88.0"
- uses: Swatinem/rust-cache@v2
- run: mkdir -p dist
- run: cargo test

api:
Expand Down Expand Up @@ -101,6 +104,7 @@ jobs:
with:
toolchain: "1.88.0"
- uses: Swatinem/rust-cache@v2
- run: mkdir -p dist
- run: cargo install rapina-cli --locked
- run: cargo build --release
- name: Start server
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
.env
*.db
*.db-journal
dist/
node_modules/
Loading