Skip to content

Merge branch 'feat/bin-refactor' of https://github.com/bcnmy/reflux i… #26

Merge branch 'feat/bin-refactor' of https://github.com/bcnmy/reflux i…

Merge branch 'feat/bin-refactor' of https://github.com/bcnmy/reflux i… #26

Workflow file for this run

name: Test Suite
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
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Run Tests
run: cargo test --all-features