Skip to content

Optimize db and logs #139

Optimize db and logs

Optimize db and logs #139

Workflow file for this run

name: CI
on:
pull_request: # trigger on pull requests
push:
branches: # array of glob patterns matching against refs/heads. Optional; defaults to all
- master # triggers on pushes that contain changes in master
jobs:
Build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [ linux ]
include:
- build: linux
os: ubuntu-latest
rust: 1.69.0
steps:
- uses: actions/checkout@v3
- name: Install Rust components
run: rustup component add rustfmt && rustup component add clippy
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-04-20
override: true
- name: Check Rust format
run: cargo fmt -- --check
- name: Build aggregator
run: cargo build --verbose --release
- name: Test aggregator
run: cargo test --all