Skip to content

remove concurrency

remove concurrency #12

name: "Build and Test"
on: "push"
jobs:
build-and-test:
runs-on: "ubuntu-latest"
env:
LLVM_PATH: "./llvm"
steps:
- name: "Checkout code"
uses: "actions/checkout@v4"
- name: "Install LLVM and Clang"
uses: "KyleMayes/install-llvm-action@v2"
with:
version: "17.0"
directory: "${{ env.LLVM_PATH }}"
- name: "Cache build artifacts"
uses: "Swatinem/rust-cache@v2"
- name: "Build and test"
run: |
cargo clippy
cargo test
env:
LLVM_SYS_170_PREFIX: "${{ env.LLVM_PATH }}"