Skip to content

Bump arango-rs(0.5 to 0.6) and bb8(0.8 to 0.9) deps version #12

Bump arango-rs(0.5 to 0.6) and bb8(0.8 to 0.9) deps version

Bump arango-rs(0.5 to 0.6) and bb8(0.8 to 0.9) deps version #12

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
services:
arangodb:
image: arangodb/arangodb:3.10.0
env:
ARANGO_ROOT_PASSWORD: openSesame
ports:
- 8529:8529
steps:
- uses: actions/checkout@v3
- name: Format
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Docs
run: cargo doc --no-deps --document-private-items --all-features