We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b3b7ca commit 73e3209Copy full SHA for 73e3209
1 file changed
.github/workflows/test.yml
@@ -23,6 +23,12 @@ jobs:
23
- uses: actions/checkout@v4
24
- name: Install toolchain
25
uses: dtolnay/rust-toolchain@nightly
26
+ - name: Install clang
27
+ run: |
28
+ apt-get update && apt-get install -y libclang-dev clang || \
29
+ apk add --no-cache libgcc clang-dev || \
30
+ echo "Using pre-installed clang"
31
+ continue-on-error: true
32
- name: Check format
33
run: cargo fmt --check
34
- name: Run clippy
0 commit comments