drep-ai 2.6.1

A local commit gate: runs the linters your repo configures, and sends changed code to an LLM for review
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- name: Install Rust for macOS release builds
  if: runner.os == 'macOS'
  uses: dtolnay/rust-toolchain@4360b52568e2003a75bf9bc1d59f33a8e3fc893c # stable
  with:
    toolchain: stable
    targets: ${{ join(matrix.targets, ',') }}

- name: Install Zig for arm64 Linux cross-builds
  if: contains(matrix.targets, 'aarch64-unknown-linux-gnu')
  uses: mlugg/setup-zig@d1434d08867e3ee9daa34448df10607b98908d29 # v2.2.1
  with:
    version: 0.16.0

- name: Install cargo-zigbuild for arm64 Linux cross-builds
  if: contains(matrix.targets, 'aarch64-unknown-linux-gnu')
  uses: taiki-e/install-action@6cd13508893c0e7eab5f273c2575d3859bd7229a # v2.86.6
  with:
    tool: cargo-zigbuild@0.23.0