Skip to content

docs: adding docker-compose example and update readme.md #397

docs: adding docker-compose example and update readme.md

docs: adding docker-compose example and update readme.md #397

Workflow file for this run

name: build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
SQLX_OFFLINE: true
jobs:
build:
runs-on: ubuntu-latest
name: "build"
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --check
- name: Check clippy
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose