Skip to content

Add --gpt-prompt flag to provide a prompt ready to be used with a GPT engine #376

Add --gpt-prompt flag to provide a prompt ready to be used with a GPT engine

Add --gpt-prompt flag to provide a prompt ready to be used with a GPT engine #376

Workflow file for this run

name: Test suite
on: [pull_request]
jobs:
rustfmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all --check
lint:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy -- -D warnings
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test