Feat: add LLVM global values. Remove all unsafe dispose calls and all unsafe public API. #42
Workflow file for this run
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
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
name: Lints | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
rust: | |
- stable | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Pre-install | |
run: | | |
brew update | |
brew install llvm@18 | |
echo "" >> /Users/runner/.bash_profile | |
echo 'export PATH="/opt/homebrew/opt/llvm/bin:$PATH"' >> /Users/runner/.bash_profile | |
echo 'export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"' >> /Users/runner/.bash_profile | |
echo 'export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"' >> /Users/runner/.bash_profile | |
source /Users/runner/.bash_profile | |
clang --version | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
components: rustfmt, clippy | |
- name: Format | |
run: cargo fmt --all -- --check | |
- name: Clippy no-default-features | |
run: | | |
source /Users/runner/.bash_profile | |
cargo clippy --all-targets --no-default-features -- -D warnings | |
- name: Clippy all-features | |
run: cargo clippy --all-targets --all-features -- -D warnings |