https://github.com/bitdefender/bddisasm/issues/89 - fixed comment. #86
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: Rust | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ windows-latest, macos-latest, ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
permissions: read-all | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set LIBCLANG_PATH | |
run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV | |
if: matrix.os == 'windows-latest' | |
- name: Debug Build | |
run: cargo build --verbose --manifest-path bindings/rsbddisasm/Cargo.toml | |
- name: Release build | |
run: cargo build --release --verbose --manifest-path bindings/rsbddisasm/Cargo.toml | |
- name: Run tests | |
run: cargo test --verbose --manifest-path bindings/rsbddisasm/Cargo.toml | |
- name: Run clippy | |
run: cargo clippy --manifest-path bindings/rsbddisasm/Cargo.toml | |
- name: Run format checks | |
run: | | |
cd bindings/rsbddisasm | |
cargo fmt -- --check | |
cd .. | |