Skip to content

Commit

Permalink
Merge branch 'feat/bin-refactor' of https://github.com/bcnmy/reflux i…
Browse files Browse the repository at this point in the history
…nto feat/bin-refactor
  • Loading branch information
AmanRaj1608 committed Jun 14, 2024
2 parents 368733d + 3b3fb3c commit a3029dc
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
name: Test Suite
on: [ pull_request, push ]
on: [pull_request, push]

jobs:
test:
name: cargo test
runs-on: ubuntu-latest

services:
mongodb:
image: mongo
ports:
- 27017:27017
options: >-
--health-cmd="mongo --eval 'db.runCommand({ ping: 1 })'"
--health-interval=10s
--health-timeout=5s
--health-retries=5
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features

- name: Set up Rust
uses: dtolnay/rust-toolchain@stable

- name: Run Tests
run: cargo test --all-features

0 comments on commit a3029dc

Please sign in to comment.