1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-18 13:38:07 +00:00
bddisasm/.github/workflows/rust.yml
2021-10-19 18:20:35 +03:00

40 lines
977 B
YAML

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 }}
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 rsbddisasm/Cargo.toml
- name: Release build
run: cargo build --release --verbose --manifest-path rsbddisasm/Cargo.toml
- name: Run tests
run: cargo test --verbose --manifest-path rsbddisasm/Cargo.toml
- name: Run clippy
run: cargo clippy --manifest-path rsbddisasm/Cargo.toml
- name: Run format checks
run: |
cd rsbddisasm
cargo fmt -- --check
cd ..