Skip to content

docker support

docker support #3

Workflow file for this run

name: web-api
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
services:
mongodb:
image: mongo
ports:
- 27017:27017
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --workspace --verbose
- name: Run tests
run: cargo test --workspace --verbose