Skip to content

provide LLVM_SYS_170_PREFIX environment variable #2

provide LLVM_SYS_170_PREFIX environment variable

provide LLVM_SYS_170_PREFIX environment variable #2

name: "Build and Test"
on: "push"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
clippy:
env:
RUSTFLAGS: "-Dwarnings"
runs-on: "ubuntu-latest"
steps:
- name: "Install LLVM and Clang"
uses: "KyleMayes/install-llvm-action@v2"
with:
version: "17.0"
- name: "Checkout code"
uses: "actions/checkout@v4"
- name: "Run clippy"
run: "cargo clippy"
env:
LLVM_SYS_170_PREFIX: "${{ env.LLVM_PATH }}"
- name: "Run tests"
run: "cargo test"
env:
LLVM_SYS_170_PREFIX: "${{ env.LLVM_PATH }}"