Llama Cpp Rs Check #14
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: Llama Cpp Rs Check | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
permissions: read-all | ||
jobs: | ||
check: | ||
Check failure on line 16 in .github/workflows/llama-cpp-rs-check.yml GitHub Actions / Llama Cpp Rs CheckInvalid workflow file
|
||
name: Run Tests on LLama Cpp Rs | ||
runs-on: ${{ vars.RUNNER }} | ||
defaults: | ||
run: | ||
working-directory: ./llama-cpp-rs | ||
needs: | ||
- changes | ||
if: ${{ needs.changes.outputs.llama-cpp-rs == 'true' }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Setup protoc | ||
uses: arduino/setup-protoc@v2.1.0 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Install Compile Deps | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
run: | ||
sudo apt-get update && sudo apt-get install -y build-essential curl libssl-dev libclang-dev pkg-config cmake git | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
components: clippy, rustfmt | ||
- name: Clippy | ||
run: cargo clippy | ||
- name: Clippy | ||
run: cargo fmt |