Skip to content

Commit

Permalink
ci: run surrealdb in backend
Browse files Browse the repository at this point in the history
  • Loading branch information
fu050409 committed Nov 18, 2024
1 parent 8a2a5cb commit 968172f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,9 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Setup Surrealdb
run: docker run --rm --pull always -p 5176:8000 surrealdb/surrealdb:latest start --user root --pass root
run: |
docker run --rm --pull always -d \
-p 5176:8000 \
surrealdb/surrealdb:latest start \
--user root --pass root
- run: cargo test --verbose --all-features

0 comments on commit 968172f

Please sign in to comment.