docs: add project web page (#105) #1763
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: Tests | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize, ready_for_review ] | |
push: | |
jobs: | |
test: | |
name: Test | |
env: | |
CARGO_TERM_COLOR: always | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
build: | |
- msrv | |
- stable | |
- nightly | |
- macos | |
- win-msvc | |
# - win-gnu | |
- no-default-features | |
include: | |
- build: msrv | |
os: ubuntu-latest | |
rust: 1.74.0 | |
args: "--features=magic-module" | |
- build: stable | |
os: ubuntu-latest | |
rust: stable | |
args: "--features=magic-module" | |
- build: nightly | |
os: ubuntu-latest | |
rust: nightly | |
args: "--features=magic-module" | |
- build: macos | |
os: macos-latest | |
rust: stable | |
args: "" | |
- build: win-msvc | |
os: windows-latest | |
rust: stable | |
args: "" | |
# Tests for the `stable-x86_64-pc-windows-gnu` toolchain disabled | |
# due to https://github.com/VirusTotal/yara-x/issues/29 | |
# | |
# - build: win-gnu | |
# os: windows-latest | |
# rust: stable-x86_64-gnu | |
# args: "" | |
- build: no-default-features | |
os: ubuntu-latest | |
rust: stable | |
args: "--package yara-x --no-default-features --features=test_proto2-module,test_proto3-module,string-module,time-module,hash-module,macho-module,magic-module,math-module,lnk-module,elf-module,pe-module,dotnet-module,console-module" | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Setup cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install dependencies | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libmagic-dev | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Run cargo test | |
run: cargo test --all-targets ${{ matrix.args }} | |
env: | |
RUSTFLAGS: -Awarnings # Allow all warnings |