Skip to content

feat: initial Rust crate for building sqlc plugins #4

feat: initial Rust crate for building sqlc plugins

feat: initial Rust crate for building sqlc plugins #4

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Protoc
uses: arduino/setup-protoc@v3
- name: Format
run: cargo fmt --check
- name: Lint
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose