Skip to content

Commit

Permalink
fix: test in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jayy-lmao committed Nov 6, 2024
1 parent a786b54 commit db41565
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,15 @@ jobs:
- name: Build project
run: cargo build --release

- uses: taiki-e/install-action@v2
with:
tool: nextest

- name: Run unit tests from root
run: cargo test --release
run: cargo nextest run

- name: Run integration tests in `tests`
run: |
cd tests
cargo test --release
TOKIO_WORKER_THREADS=1 cargo nextest run -j 1
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Name pending (currently DB sets)

https://crates.io/crates/db-set-macros

Inpsired a little bit by Toasty rs and my work on sql-gen.
Idea is to implement the most common SQLX queries, but allow you to still ultimately use SQLX for anything more complex than a basic query.

Expand Down

0 comments on commit db41565

Please sign in to comment.