perf(platform): acquire single database connection for data streams #159
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Secutils | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- 'tools/**' | |
- 'Dockerfile' | |
- 'Dockerfile.aarch64-unknown-linux-musl' | |
- 'LICENSE' | |
- '*.md' | |
- '.husky/**' | |
- '*.json' | |
env: | |
CARGO_TERM_COLOR: always | |
DATABASE_URL: postgres://postgres@localhost:5432/secutils | |
jobs: | |
ci: | |
name: Build (Linux) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: [ stable ] | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
# Always install nightly toolchain for `Rustfmt`. | |
- name: Install toolchain ${{ matrix.rust }} | |
run: | | |
rustup toolchain install ${{ matrix.rust }} nightly | |
rustup override set ${{ matrix.rust }} | |
rustup component add clippy | |
rustup component add --toolchain nightly rustfmt | |
- name: Cache Dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Check format | |
run: cargo +nightly fmt --all -- --check | |
- name: Check database schema | |
run: | | |
cargo install --force sqlx-cli | |
cargo sqlx database create | |
cargo sqlx migrate run | |
cargo sqlx prepare --check | |
- name: Test (default features) | |
run: cargo test | |
- name: Build (default features) | |
run: cargo build --release | |
- name: Clippy | |
run: cargo clippy --all-targets -- -D warnings |