Sqlite store impl #563
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: Build | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v0.* | |
pull_request: | |
env: | |
CARGO_INCREMENTAL: 0 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_and_test: | |
name: cargo clippy + test | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: -D warnings | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Install protobuf | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -yqq protobuf-compiler | |
- name: Configure CI cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Prepare .sqlx files | |
working-directory: presage-store-sqlite | |
env: | |
DATABASE_URL: sqlite:presage.sqlite | |
run: | | |
cargo install --locked sqlx-cli | |
yes | cargo sqlx database reset | |
cargo sqlx prepare | |
- name: Clippy | |
run: cargo clippy --all-targets | |
- name: Test | |
run: cargo test --all-targets | |
- name: Test docs | |
run: cargo test --doc | |
rustfmt: | |
name: rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt | |
- name: Check code format | |
run: cargo fmt -- --check |