Skip to content

chore: add important comments and additional tests #12

chore: add important comments and additional tests

chore: add important comments and additional tests #12

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Start Services with Docker Compose
run: docker-compose up -d
- name: Build
run: cargo build --verbose --release
- name: Run tests
run: cargo test --verbose -- --nocapture