34 lines
599 B
YAML
Raw Normal View History

2023-06-03 18:15:57 +03:00
name: Rust
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
2023-06-03 18:18:40 +03:00
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
2023-06-03 18:15:57 +03:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
2023-06-05 15:17:52 +03:00
run: cargo build --verbose
- name: Run tests - frida
run: cargo test --verbose
# - name: Run tests - frida
# if: matrix.os == 'windows-latest'
# run: cargo test --verbose --no-default-features --features managed_lib