Skip to content

Chore(deps): Update google-generative-ai-rs requirement from 0.1.6 to 0.3.2 #129

Chore(deps): Update google-generative-ai-rs requirement from 0.1.6 to 0.3.2

Chore(deps): Update google-generative-ai-rs requirement from 0.1.6 to 0.3.2 #129

Workflow file for this run

name: Rust Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: Check formatting
run: cargo fmt -- --check
- name: Check clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test