1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2025-01-03 11:50:55 +00:00

Add Rust workflow

This commit is contained in:
Anichitei Ionel-Cristinel 2021-10-19 18:06:35 +03:00 committed by GitHub
parent 51dbf5fb0a
commit b57bf183b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,32 @@
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: 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: cargo fmt -- --check --manifest-path rsbddisasm/Cargo.toml